/* 
=============================================
Unified Films - Global Stylesheet
=============================================
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --teal: #168C80;
  --teal-hover: #13776d;
  --orange: #F2811D;
  --orange-hover: #d97015;
  --bg-color: #FFFFFF;
  --text-color: #111111;
  --text-light: #555555;
  --light-gray: #F8F8F8;
  --border-color: #E5E5E5;
  --glass-bg: rgba(255, 255, 255, 0.85);
  
  /* Gradient */
  --gradient-accent: linear-gradient(135deg, var(--teal), var(--orange));
  
  /* Typography */
  --font-primary: 'Outfit', sans-serif;
  
  /* Spacing */
  --section-pad: 100px 0;
  --section-pad-mobile: 60px 0;
  
  /* Utilities */
  --border-radius: 12px;
  --box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  --glass-shadow: 0 8px 32px rgba(0,0,0,0.05);
  --transition: all 0.3s ease;
}

/* =============================================
   Reset & Base
============================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: 1.5rem; }

p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title span {
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* =============================================
   Buttons & Links
============================================= */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--teal);
  color: #fff;
  box-shadow: 0 8px 20px rgba(22, 140, 128, 0.3);
}

.btn-primary:hover {
  background-color: var(--teal-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(22, 140, 128, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}

.btn-secondary:hover {
  background-color: var(--teal);
  color: #fff;
  transform: translateY(-3px);
}

.btn-gradient {
  background: var(--gradient-accent);
  color: #fff;
}

.btn-gradient:hover {
  box-shadow: 0 10px 25px rgba(242, 129, 29, 0.4);
  transform: translateY(-3px);
}

/* =============================================
   Header & Navigation
============================================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-color);
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links li a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-color);
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-color);
}

/* =============================================
   Floating Actions
============================================= */
.floating-btn {
  position: fixed;
  bottom: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.floating-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-whatsapp {
  right: 30px;
  background-color: #25D366;
  opacity: 1; /* Always visible */
  visibility: visible;
  transform: translateY(0);
}

.float-whatsapp:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.float-top {
  left: 30px;
  background-color: var(--text-color);
}

.float-top:hover {
  background-color: var(--teal);
  transform: translateY(-5px);
}

/* =============================================
   Footer
============================================= */
footer {
  background-color: #0A0A0A;
  color: #fff;
  padding: 80px 0 30px;
}

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

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  display: inline-block;
  color: #fff;
}

.footer-about p {
  color: #aaa;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-accent);
}

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

.footer-links a {
  color: #aaa;
}

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

.footer-contact li {
  color: #aaa;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-contact i {
  color: var(--teal);
  font-size: 1.2rem;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #888;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.social-links a:hover {
  background: var(--teal);
  transform: translateY(-3px);
}

/* =============================================
   Animations
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   Media Queries
============================================= */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
    z-index: 1001; /* Above mobile menu */
    position: relative;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-color);
    flex-direction: column;
    justify-content: center;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: var(--transition);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  .nav-links .btn {
    margin-top: 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}
