/* Central Florida Creatives - Main Stylesheet */

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-green: #213c27;
  --accent-gold: #dec17b;
  --text-light: #d9d9d9;
  --button-primary: #ce8729;
  --button-secondary: #b26712;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.2);
}

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    #1a2f1f 50%,
    #213c27 100%
  );
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* ============================================
   FLORIDA-THEMED BACKGROUND ELEMENTS
   ============================================ */

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 183, 3, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 140, 0, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(0, 191, 255, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: -1;
}

.palm-leaf {
  position: fixed;
  width: 30px;
  height: 40px;
  background: linear-gradient(45deg, #228b22, #32cd32);
  border-radius: 50% 10% 50% 10%;
  opacity: 0.1;
  animation: float 15s infinite linear;
  pointer-events: none;
  z-index: -1;
}

.palm-leaf:nth-child(1) {
  top: -50px;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 20s;
}

.palm-leaf:nth-child(2) {
  top: -50px;
  left: 30%;
  animation-delay: 5s;
  animation-duration: 25s;
}

.palm-leaf:nth-child(3) {
  top: -50px;
  left: 60%;
  animation-delay: 10s;
  animation-duration: 18s;
}

.palm-leaf:nth-child(4) {
  top: -50px;
  left: 85%;
  animation-delay: 15s;
  animation-duration: 22s;
}

@keyframes float {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.1;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

.sun-rays {
  position: fixed;
  top: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
  opacity: 0.03;
  animation: rotate 30s linear infinite;
  pointer-events: none;
  z-index: -1;
}

.sun-rays::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    transparent 30%,
    rgba(255, 183, 3, 0.3) 35%,
    transparent 40%,
    transparent 45%,
    rgba(255, 183, 3, 0.2) 50%,
    transparent 55%,
    transparent 60%,
    rgba(255, 183, 3, 0.1) 65%,
    transparent 70%
  );
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.bubble {
  position: fixed;
  background: linear-gradient(
    135deg,
    rgba(0, 191, 255, 0.1),
    rgba(135, 206, 235, 0.05)
  );
  border-radius: 50%;
  animation: bubble-float 12s infinite linear;
  pointer-events: none;
  z-index: -1;
}

.bubble:nth-child(1) {
  width: 20px;
  height: 20px;
  left: 15%;
  animation-delay: 0s;
  animation-duration: 15s;
}

.bubble:nth-child(2) {
  width: 15px;
  height: 15px;
  left: 45%;
  animation-delay: 3s;
  animation-duration: 12s;
}

.bubble:nth-child(3) {
  width: 25px;
  height: 25px;
  left: 75%;
  animation-delay: 6s;
  animation-duration: 18s;
}

.bubble:nth-child(4) {
  width: 12px;
  height: 12px;
  left: 90%;
  animation-delay: 9s;
  animation-duration: 14s;
}

@keyframes bubble-float {
  0% {
    bottom: -100px;
    opacity: 0;
    transform: translateX(0px);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    bottom: 100vh;
    opacity: 0;
    transform: translateX(30px);
  }
}

.wave-pattern {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 191, 255, 0.03) 50%,
    rgba(135, 206, 235, 0.05) 100%
  );
  clip-path: polygon(0 50%, 100% 80%, 100% 100%, 0% 100%);
  animation: wave-move 8s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes wave-move {
  0%,
  100% {
    clip-path: polygon(0 50%, 100% 80%, 100% 100%, 0% 100%);
  }
  50% {
    clip-path: polygon(0 60%, 100% 70%, 100% 100%, 0% 100%);
  }
}

.tropical-dots {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(255, 183, 3, 0.05) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(255, 140, 0, 0.03) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(0, 191, 255, 0.02) 1px,
      transparent 1px
    );
  background-size: 100px 100px, 150px 150px, 200px 200px;
  animation: dots-drift 20s linear infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes dots-drift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.palm-tree {
  position: fixed;
  bottom: 0;
  opacity: 0.03;
  pointer-events: none;
  z-index: -1;
}

.palm-tree-left {
  left: 5%;
  width: 80px;
  height: 200px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(34, 139, 34, 0.6) 60%,
    rgba(139, 69, 19, 0.8) 100%
  );
  clip-path: polygon(
    45% 0%,
    55% 0%,
    60% 80%,
    70% 80%,
    75% 100%,
    25% 100%,
    30% 80%,
    40% 80%
  );
  animation: sway 8s ease-in-out infinite;
}

.palm-tree-left::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 40px;
  background: radial-gradient(
    ellipse,
    rgba(34, 139, 34, 0.8) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.palm-tree-right {
  right: 8%;
  width: 60px;
  height: 180px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(34, 139, 34, 0.5) 65%,
    rgba(139, 69, 19, 0.7) 100%
  );
  clip-path: polygon(
    40% 0%,
    60% 0%,
    65% 85%,
    75% 85%,
    80% 100%,
    20% 100%,
    25% 85%,
    35% 85%
  );
  animation: sway 10s ease-in-out infinite reverse;
}

.palm-tree-right::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 35px;
  background: radial-gradient(
    ellipse,
    rgba(34, 139, 34, 0.7) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

@keyframes sway {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2deg);
  }
  75% {
    transform: rotate(-2deg);
  }
}

.sunshine-glow {
  position: fixed;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 183, 3, 0.1) 0%,
    rgba(255, 140, 0, 0.05) 40%,
    transparent 70%
  );
  border-radius: 50%;
  animation: sunshine-pulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes sunshine-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}

.tropical-particle {
  position: fixed;
  width: 4px;
  height: 4px;
  background: linear-gradient(
    45deg,
    rgba(255, 183, 3, 0.6),
    rgba(255, 140, 0, 0.4)
  );
  border-radius: 50%;
  animation: particle-drift 25s infinite linear;
  pointer-events: none;
  z-index: -1;
}

.tropical-particle:nth-child(odd) {
  background: linear-gradient(
    45deg,
    rgba(0, 191, 255, 0.4),
    rgba(135, 206, 235, 0.3)
  );
  animation-duration: 30s;
}

@keyframes particle-drift {
  0% {
    transform: translateY(100vh) translateX(0px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.calculator-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* ============================================
   HEADER SECTION
   ============================================ */

.header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 20px;
  background: linear-gradient(
    135deg,
    rgba(128, 128, 128, 0.3) 0%,
    rgba(255, 183, 3, 0.05) 30%,
    rgba(128, 128, 128, 0.3) 70%,
    rgba(0, 191, 255, 0.05) 100%
  );
  border-radius: 25px;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px var(--shadow);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 217, 217, 0.2);
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(255, 183, 3, 0.1) 50%,
      transparent 70%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(0, 191, 255, 0.08) 0%,
      transparent 50%
    );
  animation: headerShimmer 6s infinite;
}

@keyframes headerShimmer {
  0%,
  100% {
    opacity: 0.5;
    transform: translateX(-100%);
  }
  50% {
    opacity: 1;
    transform: translateX(100%);
  }
}

/* Logo Styles */
.logo-container {
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7)
  );
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2),
    inset 0 2px 10px rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.logo::before {
  display: none;
}

.logo-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-light);
  text-shadow: 0 2px 4px var(--shadow);
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
}

.subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 15px;
  opacity: 0.9;
  font-style: italic;
  position: relative;
  z-index: 2;
}

.tagline {
  font-size: 1rem;
  color: var(--text-light);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

/* ============================================
   LINK ITEMS & SECTIONS
   ============================================ */

.links-section {
  margin-bottom: 50px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  background: linear-gradient(
    135deg,
    var(--accent-gold),
    var(--button-primary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.link-item {
  display: block;
  text-decoration: none;
  background: rgba(217, 217, 217, 0.1);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  font-weight: 600;
  color: var(--text-light);
  border: 1px solid rgba(217, 217, 217, 0.2);
  box-shadow: 0 8px 25px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.link-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(217, 217, 217, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.link-item:hover::before {
  left: 100%;
}

.link-item:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(217, 217, 217, 0.2);
  border-color: rgba(217, 217, 217, 0.4);
  box-shadow: 0 15px 40px var(--shadow);
}

.services {
  background: rgba(217, 217, 217, 0.1);
  border: 1px solid rgba(217, 217, 217, 0.2);
}

.gallery {
  background: rgba(217, 217, 217, 0.1);
  border: 1px solid rgba(217, 217, 217, 0.2);
}

.portfolio {
  background: rgba(217, 217, 217, 0.1);
  border: 1px solid rgba(217, 217, 217, 0.2);
}

.contact {
  background: linear-gradient(
    135deg,
    var(--button-primary),
    var(--button-secondary)
  );
  border: 2px solid var(--accent-gold);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(206, 135, 41, 0.3);
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact:hover {
  background: linear-gradient(
    135deg,
    var(--accent-gold),
    var(--button-primary)
  );
  border-color: var(--white);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 50px rgba(206, 135, 41, 0.5);
  color: var(--white);
}

.calculator {
  background: rgba(217, 217, 217, 0.1);
  border: 1px solid rgba(217, 217, 217, 0.2);
}

.social {
  background: rgba(217, 217, 217, 0.1);
  border: 1px solid rgba(217, 217, 217, 0.2);
  position: relative;
}

.partners {
  background: rgba(217, 217, 217, 0.1);
  border: 1px solid rgba(217, 217, 217, 0.2);
}

/* ============================================
   GRID LAYOUTS
   ============================================ */

.social-grid,
.portfolio-grid,
.services-grid,
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.social-card,
.portfolio-card,
.service-card-grid,
.partner-card-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  background: linear-gradient(
    135deg,
    rgba(217, 217, 217, 0.1),
    rgba(222, 193, 123, 0.05)
  );
  border: 2px solid rgba(222, 193, 123, 0.2);
  border-radius: 20px;
  text-decoration: none;
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  min-height: 120px;
}

.social-card::before,
.portfolio-card::before,
.service-card-grid::before,
.partner-card-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.social-card:hover::before,
.portfolio-card:hover::before,
.service-card-grid:hover::before,
.partner-card-grid:hover::before {
  transform: translateX(100%);
}

.social-card:hover,
.portfolio-card:hover,
.service-card-grid:hover,
.partner-card-grid:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  color: var(--accent-gold);
}

.social-icon,
.portfolio-icon,
.service-card-grid .service-icon,
.partner-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 15px;
  border-radius: 12px;
  font-weight: bold;
}

.social-icon.facebook {
  background: #1877f2;
  color: white;
}

.social-icon.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: white;
}

.social-icon.tiktok {
  background: #000000;
  color: white;
}

.social-icon.google {
  background: #4285f4;
  color: white;
}

.portfolio-icon {
  background: linear-gradient(
    135deg,
    var(--button-primary),
    var(--accent-gold)
  );
  color: white;
  font-size: 28px;
}

.service-card-grid .service-icon {
  background: linear-gradient(
    135deg,
    var(--button-primary),
    var(--accent-gold)
  );
  color: white;
  font-size: 28px;
}

.partner-icon {
  background: linear-gradient(
    135deg,
    var(--button-primary),
    var(--accent-gold)
  );
  color: white;
  font-size: 28px;
}

.service-card-grid h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-light);
  font-weight: 700;
  text-align: center;
}

.service-card-grid p {
  color: var(--text-light);
  opacity: 0.8;
  line-height: 1.6;
  font-size: 0.9rem;
  text-align: center;
  margin: 0;
}

/* ============================================
   FORM STYLES
   ============================================ */

.calculator-content {
  background: rgba(217, 217, 217, 0.1);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(222, 193, 123, 0.2);
  margin-bottom: 30px;
  border: none;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.calculator-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--accent-gold),
    var(--button-primary),
    var(--accent-gold)
  );
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.calculator-content h2 {
  text-align: center;
  margin-bottom: 35px;
  font-size: 2.2rem;
  background: linear-gradient(
    135deg,
    var(--accent-gold),
    var(--button-primary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: 1px;
  position: relative;
}

.calculator-content h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-green), var(--light-blue));
  border-radius: 2px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--text-light);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group select,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 20px;
  border: 2px solid rgba(217, 217, 217, 0.3);
  border-radius: 15px;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  backdrop-filter: blur(10px);
  position: relative;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.form-group input[type="date"] {
  color-scheme: dark;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(222, 193, 123, 0.15),
    0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.3);
}

.form-group select:hover,
.form-group input:hover,
.form-group textarea:hover {
  border-color: var(--button-primary);
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.2);
}

.default-option {
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 600;
  font-style: italic;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.form-group select:invalid {
  color: rgba(255, 255, 255, 0.7);
}

.form-group select:valid {
  color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
  opacity: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.design-note {
  text-align: center;
  padding: 20px;
  margin: 20px 0;
  background: rgba(222, 193, 123, 0.1);
  border: 1px solid rgba(222, 193, 123, 0.3);
  border-radius: 10px;
  color: var(--accent-gold);
}

.design-note p {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.btn {
  background: rgba(222, 193, 123, 0.1);
  color: var(--text-light);
  padding: 20px 40px;
  border: 2px solid rgba(222, 193, 123, 0.2);
  border-radius: 15px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(222, 193, 123, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: rgba(222, 193, 123, 0.2);
  color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-color: rgba(222, 193, 123, 0.4);
}

.btn:active {
  transform: translateY(-1px);
}

/* ============================================
   REVEAL CONTAINERS
   ============================================ */

.reveal-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 20px;
}

.reveal-container.active {
  max-height: 2000px;
}

.reveal-content {
  background: linear-gradient(
    135deg,
    rgba(217, 217, 217, 0.1) 0%,
    rgba(255, 183, 3, 0.02) 30%,
    rgba(217, 217, 217, 0.1) 70%,
    rgba(0, 191, 255, 0.02) 100%
  );
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
  border: 1px solid rgba(222, 193, 123, 0.2);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
}

.reveal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--accent-gold),
    var(--button-primary),
    var(--accent-gold)
  );
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

.close-btn {
  background: linear-gradient(
    135deg,
    var(--button-secondary),
    var(--button-primary)
  );
  color: var(--white);
  padding: 12px 30px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 30px;
  box-shadow: 0 0 0 2px rgba(178, 103, 18, 0.3);
}

.close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(178, 103, 18, 0.3),
    0 0 0 3px rgba(178, 103, 18, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   CAROUSELS
   ============================================ */

.gallery-carousel-container {
  position: relative;
  max-width: 800px;
  margin: 15px auto;
  background: rgba(217, 217, 217, 0.1);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(222, 193, 123, 0.2);
}

.gallery-carousel {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.gallery-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.gallery-slide.prev {
  transform: translateX(-100%);
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.image-placeholder-gallery {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--button-primary),
    var(--accent-gold)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  padding: 15px;
  position: relative;
  overflow: hidden;
}

.image-placeholder-gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.gallery-item:hover .image-placeholder-gallery::before {
  transform: translateX(100%);
}

/* Customer Reviews Carousel */
.reviews-section {
  margin: 30px 0 20px 0;
}

.carousel-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(217, 217, 217, 0.1);
  border-radius: 20px;
  box-shadow: 0 15px 35px var(--shadow);
  overflow: hidden;
  padding: 40px;
}

.carousel {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.review-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 20px 15px;
  overflow: hidden;
}

.review-card.active {
  opacity: 1;
  transform: translateX(0);
}

.review-card.prev {
  transform: translateX(-100%);
}

.customer-image {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.customer-photo {
  width: 500px;
  height: 310px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 8px 25px var(--shadow);
  border: 3px solid rgba(222, 193, 123, 0.3);
  transition: all 0.3s ease;
}

.customer-photo:hover {
  transform: scale(1.02);
  border-color: var(--accent-gold);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.image-placeholder {
  width: 500px;
  height: 310px;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    var(--button-primary),
    var(--accent-gold)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 4px var(--shadow);
  box-shadow: 0 8px 25px var(--shadow);
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 70%
  );
  border-radius: 15px;
}

.stars {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ffd700;
}

.review-card p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: var(--text-light);
  font-style: italic;
  max-width: 600px;
}

.reviewer {
  margin-top: 0%;
  padding-top: 15px;
}

.reviewer strong {
  display: block;
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 3px;
}

.reviewer span {
  font-size: 0.85rem;
  color: var(--text-light);
  opacity: 0.8;
  background: linear-gradient(
    135deg,
    var(--accent-gold),
    var(--button-primary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(
    135deg,
    rgba(217, 217, 217, 0.1),
    rgba(222, 193, 123, 0.1)
  );
  border-radius: 15px;
  margin-top: 20px;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--sage-green),
    var(--light-blue),
    var(--sage-green)
  );
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 8px;
  background: rgba(222, 193, 123, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(222, 193, 123, 0.2);
  position: relative;
  overflow: hidden;
}

.footer-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.footer-link:hover::before {
  left: 100%;
}

.footer-link:hover {
  color: var(--white);
  background: rgba(222, 193, 123, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: rgba(222, 193, 123, 0.4);
}

.footer-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--button-primary));
  margin: 20px auto;
  border-radius: 2px;
}

.footer-info {
  margin-top: 20px;
}

.footer-info p {
  margin: 8px 0;
}

.footer-contact {
  font-size: 0.9rem;
  margin: 10px 0;
  font-weight: 600;
}

.footer-contact a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: var(--accent-gold);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Footer External Section */
.footer-external {
  text-align: center;
  padding: 30px 0;
  margin-top: 20px;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.footer-external::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(222, 193, 123, 0.1) 0%,
    rgba(206, 135, 41, 0.05) 50%,
    transparent 100%
  );
  animation: footerGlow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes footerGlow {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.footer-powered {
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 15px;
  background: linear-gradient(
    45deg,
    var(--accent-gold),
    var(--button-primary),
    var(--accent-gold),
    #ffd700
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(222, 193, 123, 0.5);
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(222, 193, 123, 0.3);
  box-shadow: 0 5px 20px rgba(222, 193, 123, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-powered::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.8s;
  border-radius: 15px;
}

.footer-powered:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(222, 193, 123, 0.4);
  border-color: rgba(222, 193, 123, 0.6);
}

.footer-powered:hover::before {
  left: 100%;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.8;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.footer-external::after {
  content: "✨";
  position: absolute;
  font-size: 12px;
  color: var(--accent-gold);
  opacity: 0.6;
  animation: floatParticle 6s infinite linear;
  pointer-events: none;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0px) translateX(-20px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-50px) translateX(20px) rotate(360deg);
    opacity: 0;
  }
}

/* ============================================
   TEXT MESSAGE WIDGET
   ============================================ */

.text-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50px;
  padding: 15px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.text-widget:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #2aee7c, #15a085);
}

.text-widget-icon {
  font-size: 24px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.text-widget-text {
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.link-item,
.calculator-content {
  animation: fadeInUp 0.6s ease forwards;
}

.calculator-content {
  animation-delay: 0.1s;
}

.link-item:nth-child(1) {
  animation-delay: 0.2s;
}

.link-item:nth-child(2) {
  animation-delay: 0.3s;
}

.link-item:nth-child(3) {
  animation-delay: 0.4s;
}

.link-item:nth-child(4) {
  animation-delay: 0.5s;
}

.link-item:nth-child(5) {
  animation-delay: 0.6s;
}

.link-item:nth-child(6) {
  animation-delay: 0.7s;
}

.link-item:nth-child(7) {
  animation-delay: 0.8s;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .logo {
    width: 200px;
    height: 200px;
  }

  .header h1 {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .tagline {
    font-size: 0.9rem;
  }

  .container,
  .calculator-container {
    padding: 15px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .calculator-content {
    padding: 25px 20px;
  }

  .calculator-content h2 {
    font-size: 1.8rem;
  }

  .design-note {
    padding: 15px;
    margin: 15px 0;
  }

  .design-note p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 18px 30px;
    font-size: 16px;
  }

  .carousel {
    height: clamp(450px, 65vh, 520px);
  }

  .carousel-container {
    padding: 20px 15px;
  }

  .customer-image {
    margin-bottom: 8px;
  }

  .review-card {
    padding: 10px;
  }

  .review-card p {
    font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    line-height: 1.3;
    margin-bottom: 8px;
    max-width: 90%;
  }

  .customer-photo {
    width: 200px;
    height: 150px;
    border-radius: 12px;
  }

  .image-placeholder {
    width: 200px;
    height: 150px;
    border-radius: 12px;
    font-size: 1rem;
  }

  .image-placeholder::before {
    border-radius: 12px;
  }

  .stars {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .reviewer {
    font-size: 0.85rem;
  }

  .reviewer strong {
    font-size: 0.9rem;
    margin-bottom: 2px;
  }

  .reviewer span {
    font-size: 0.8rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .footer-link {
    font-size: 0.85rem;
    padding: 10px 20px;
    width: 100%;
    max-width: 250px;
  }

  .footer {
    padding: 30px 20px;
  }

  .footer-contact {
    font-size: 0.85rem;
  }

  .social-grid,
  .portfolio-grid,
  .services-grid,
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .social-card,
  .portfolio-card,
  .service-card-grid,
  .partner-card-grid {
    padding: 25px 15px;
    min-height: 100px;
    font-size: 1rem;
  }

  .social-icon,
  .portfolio-icon,
  .service-card-grid .service-icon,
  .partner-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-bottom: 12px;
  }

  .palm-tree-left,
  .palm-tree-right {
    height: 120px;
    opacity: 0.02;
  }

  .palm-tree-left {
    width: 60px;
  }

  .palm-tree-right {
    width: 45px;
  }

  .sun-rays {
    width: 150px;
    height: 150px;
    top: 5%;
    right: 5%;
    opacity: 0.02;
  }

  .sunshine-glow {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
  }

  .tropical-particle {
    width: 3px;
    height: 3px;
  }

  .wave-pattern {
    height: 80px;
  }

  .text-widget {
    display: flex;
    bottom: 15px;
    right: 15px;
    padding: 12px 16px;
  }

  .text-widget-icon {
    font-size: 20px;
  }

  .text-widget-text {
    font-size: 12px;
  }

  .footer-powered {
    font-size: 1rem;
    padding: 8px 16px;
  }

  .footer-copyright {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .carousel {
    height: clamp(380px, 60vh, 450px);
  }

  .carousel-container {
    padding: 15px 10px;
  }

  .review-card {
    padding: 8px;
  }

  .customer-photo {
    width: 320px;
    height: 210px;
    border-radius: 10px;
  }

  .image-placeholder {
    width: 160px;
    height: 120px;
    border-radius: 10px;
    font-size: 0.9rem;
  }

  .image-placeholder::before {
    border-radius: 10px;
  }

  .review-card p {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    line-height: 1.25;
    margin-bottom: 6px;
  }

  .stars {
    font-size: 0.9rem;
    margin-bottom: 4px;
  }

  .customer-image {
    margin-bottom: 6px;
  }

  .reviewer strong {
    font-size: 0.85rem;
  }

  .reviewer span {
    font-size: 0.75rem;
  }

  .text-widget-text {
    display: none;
  }

  .text-widget {
    padding: 12px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    justify-content: center;
  }
}

@media (max-width: 320px) {
  .carousel {
    height: clamp(320px, 55vh, 380px);
  }

  .carousel-container {
    padding: 10px 8px;
    border-radius: 15px;
  }

  .review-card {
    padding: 6px;
  }

  .customer-photo {
    width: 120px;
    height: 90px;
    border-radius: 8px;
  }

  .image-placeholder {
    width: 120px;
    height: 90px;
    border-radius: 8px;
    font-size: 0.75rem;
  }

  .image-placeholder::before {
    border-radius: 8px;
  }

  .review-card p {
    font-size: clamp(0.75rem, 1.8vw, 0.85rem);
    line-height: 1.2;
    margin-bottom: 4px;
    max-width: 95%;
  }

  .stars {
    font-size: 0.8rem;
    margin-bottom: 3px;
  }

  .customer-image {
    margin-bottom: 4px;
  }

  .reviewer strong {
    font-size: 0.8rem;
  }

  .reviewer span {
    font-size: 0.7rem;
  }
}

@media (min-width: 1200px) {
  .carousel {
    height: clamp(600px, 65vh, 750px);
  }

  .customer-photo {
    width: 320px;
    height: 240px;
  }

  .image-placeholder {
    width: 320px;
    height: 240px;
    font-size: 1.5rem;
  }

  .review-card p {
    font-size: clamp(1rem, 2.8vw, 1.15rem);
    line-height: 1.5;
    max-width: 550px;
  }

  .stars {
    font-size: 1.3rem;
  }

  .reviewer strong {
    font-size: 1.05rem;
  }

  .reviewer span {
    font-size: 0.9rem;
  }
}

<!-- ============================================ -->
<!-- STEP 2: Add this CSS to your css/styles.css file (at the end) -->
<!-- ============================================ -->

/*
================================================
LOADING SCREEN STYLES
================================================
*/

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    #1a2f1f 50%,
    #213c27 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  animation: fadeInUp 0.8s ease;
}

.loading-logo {
  margin-bottom: 30px;
  animation: logoFloat 2s ease-in-out infinite;
}

.loading-logo-image {
  width: 750px;           /* 5x bigger */
  height: 750px;          /* 5x bigger */
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7)
  );
  padding: 100px;         /* 5x bigger */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3),
    inset 0 2px 10px rgba(255, 255, 255, 0.8);
  border: 15px solid rgba(255, 255, 255, 0.5);  /* 5x bigger */
}

.loading-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-light);
  text-shadow: 0 2px 4px var(--shadow);
  letter-spacing: 3px;
  margin-bottom: 15px;
  animation: textGlow 2s ease-in-out infinite;
}

.loading-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-gold);
  font-style: italic;
  letter-spacing: 2px;
  animation: subtitleFade 2s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes textGlow {
  0%, 100% {
    text-shadow: 0 2px 4px var(--shadow);
  }
  50% {
    text-shadow: 0 2px 20px rgba(222, 193, 123, 0.5),
                 0 2px 4px var(--shadow);
  }
}

@keyframes subtitleFade {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .loading-logo-image {
    width: 400px;         /* Scaled for tablets */
    height: 400px;
    padding: 50px;
    border: 8px solid rgba(255, 255, 255, 0.5);
  }
}

@media (max-width: 480px) {
  .loading-logo-image {
    width: 300px;         /* Scaled for phones */
    height: 300px;
    padding: 40px;
    border: 6px solid rgba(255, 255, 255, 0.5);
  }
}

/* Add this to the existing #loading-screen styles */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    #1a2f1f 50%,
    #213c27 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  opacity: 1;  /* Add this */
  visibility: visible;  /* Add this */
}

/* Hide main content while loading */
body.loading {
  overflow: hidden;
}

body.loading .container,
body.loading .calculator-container,
body.loading .palm-leaf,
body.loading .sun-rays,
body.loading .sunshine-glow,
body.loading .bubble,
body.loading .palm-tree,
body.loading .wave-pattern,
body.loading .tropical-dots,
body.loading .tropical-particle,
body.loading .text-widget {
  opacity: 0;
  visibility: hidden;
}