/* ===================== RESET ===================== */
*{margin:0;padding:0;box-sizing:border-box;font-family:Arial,sans-serif;}
body{line-height:1.5}




/* Remove default link styles */
a {
  color: inherit;      /* Makes link take the text color of its parent */
  text-decoration: none; /* Removes underline */
  transition: color 0.3s ease, text-decoration 0.3s ease; /* optional smooth hover effect */
}

/* Optional: Add a hover effect */
a:hover {
  color: #FFD700;      /* Example: gold on hover */
  text-decoration: underline; /* optional underline on hover */
}

/* ===================== CONTACT ICONS ===================== */
.contact-icons{display:flex;gap:.72rem;font-size:.9rem}
.contact-icons a{
  display:inline-flex;align-items:center;justify-content:center;
  width:36px;height:36px;border-radius:50%;
  background:linear-gradient(145deg,#111,#000);
  color:#fff;text-decoration:none;position:relative;overflow:hidden;
  transition:transform .3s,box-shadow .3s,color .3s;
  box-shadow:0 4px 6px rgba(0,0,0,.5),inset 0 1px 2px rgba(255,255,255,.05)
}
.contact-icons a::before{
  content:"";position:absolute;top:0;left:0;width:100%;height:50%;
  background:rgba(255,255,255,.12);border-radius:50%;
}
.contact-icons a:hover,
.contact-icons a:focus{
  color:#FFD700;
  transform:scale(1.25) rotate(5deg);
  box-shadow:0 6px 12px rgba(0,0,0,.6),inset 0 2px 4px rgba(255,255,255,.12)
}


/* Nav icons */
.contact-icons.nav{gap:.6rem;font-size:1rem;order:-1}
.contact-icons.nav a{width:18px;height:18px;transform:scale(1.1)}
.contact-icons.nav a:hover{transform:scale(1.2) rotate(3deg)}

@media(max-width:768px){
  .contact-icons{gap:.54rem;font-size:.8rem}
  .contact-icons a{width:32px;height:32px}
  .contact-icons.nav{gap:.27rem;font-size:.4rem}
  .contact-icons.nav a{width:16px;height:16px}
}
@media(max-width:480px){
  .contact-icons{gap:.36rem;font-size:.7rem}
  .contact-icons a{width:28px;height:28px}
  .contact-icons.nav{gap:1.3rem;font-size:.8rem}
  .contact-icons.nav a{width:32px;height:32px}
}

/* ===================== NAVIGATION ===================== */
nav{
  position:sticky;top:0;width:100%;
  background:#111;color:#fff;
  display:flex;justify-content:space-between;align-items:center;
  padding:.5rem 1rem;z-index:1000
}
.navleft{display:flex;align-items:center;gap:.8rem}
.navimg{max-height:30px}

.navlogo .logo-link{
  display:flex;align-items:center;gap:.25rem;
  text-decoration:none;font-size:1rem;
  font-family:'Lora',serif;font-weight:500;
  letter-spacing:.5px;transition:transform .25s
}
.navlogo .logo-gem{color:#00d4ff;font-size:1.2rem;text-shadow:0 0 4px rgba(0,212,255,.6)}
.navlogo .logo-afw{color:#FFD700;font-weight:700;font-family:'Montserrat',sans-serif}
.navlogo .logo-text{color:#fff;font-weight:400}
.navlogo .logo-link:hover{transform:translateY(-2px)}
@media(max-width:1024px){.navlogo{display:none}}

.hamburger{display:flex;flex-direction:column;gap:5px;cursor:pointer}
.hamburger div{width:25px;height:3px;background:#fff}

.nav-links{
  position:fixed;top:0;right:-250px;width:250px;height:100%;
  background:#111;padding:2rem 1rem;
  display:flex;flex-direction:column;gap:.5rem;
  transition:right .3s;overflow-y:auto;z-index:1001
}
.nav-links.active{right:0}
.nav-links a{color:#fff;text-decoration:none;padding:.5rem}
.nav-links a:hover{background:#222;border-radius:4px}
.close-btn{align-self:flex-end;font-size:1.5rem;cursor:pointer;margin-bottom:1rem}

/* ===================== HERO ===================== */
.hero-section{background:#111111;padding:2.5rem 1rem;display:flex;justify-content:center;text-align:center}
.hero-container{max-width:900px}
.visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}

.hero-logo{display:block;width:460px;max-width:90%;margin:0 auto 1.5rem}
@media(max-width:1200px){.hero-logo{width:700px}}
@media(max-width:768px){.hero-logo{width:740px}}
@media(min-width:500px){.hero-logo{display:none}}

.hero-tagline-wrap{position:relative;height:1.8em;margin-bottom:.5em;overflow:hidden;max-width:990px}
.hero-tagline{
  position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  font-size:1rem;font-weight:300;letter-spacing:.3px;
  color:#d6d6d6;opacity:0;transform:translateY(10px);
  transition:opacity .6s,transform .6s
}
.hero-tagline.active{opacity:1;transform:translateY(0)}
.hero-tagline strong{color:#FFD700;font-weight:500}

.hero-icons{justify-content:center;margin:1rem 0}
.hero-microcopy{font-size:.85rem;color:#aaa}

/* ===================== GLOBAL CTA BUTTON ===================== */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.4rem;

  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.55px;
  text-decoration: none;

  color: #FFD700;
  border-radius: 999px;

  /* deep black glass */
  background: linear-gradient(180deg, #1a1a1a 0%, #070707 100%);

  /* glow + inset effect */
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.14),
    0 18px 40px rgba(0, 0, 0, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -6px 12px rgba(0, 0, 0, 0.9);

  position: relative;
  overflow: hidden;

  /* pointer events fully active */
  pointer-events: auto;

  transition:
    transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
    color 0.25s ease;
}

/* glass reflection sweep */
.cta-button::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55),
    transparent 70%
  );

  opacity: 0.28;
  transform: translateX(-140%);
  transition: transform 0.9s ease;

  /* ensure pseudo-element doesn't block clicks */
  pointer-events: none;
  z-index: 0;
}

/* hover = lift + glow */
.cta-button:hover {
  color: #fff;
  transform: translateY(-4px);

  box-shadow:
    0 0 30px rgba(255, 255, 255, 0.26),
    0 28px 60px rgba(0, 0, 0, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -8px 16px rgba(0, 0, 0, 0.95);
}

.cta-button:hover::before {
  transform: translateX(140%);
}

/* active = press feedback */
.cta-button:active {
  color: #fff;
  transform: translateY(-1px) scale(0.96);

  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.16),
    0 14px 28px rgba(0, 0, 0, 0.45),
    inset 0 4px 10px rgba(0, 0, 0, 0.9);
}

/* mobile adjustments */
@media (max-width: 768px) {
  .cta-button {
    padding: 0.8rem 1.9rem;
    font-size: 0.95rem;
  }
}

/* ===================== SERVICES ===================== */
.services{background:#141414;padding:0 1rem 3rem}
.services-wrap{max-width:1200px;margin:0 auto;display:flex;gap:1.2rem}
.service-box{
  flex:1;
  background:linear-gradient(160deg,#121212,#0a0a0a);
  color:#fff;
  padding:1.8rem;
  border-radius:16px;
box-shadow:
    0 4px 12px rgba(255, 255, 255, 0.08),  /* soft outer glow */
    0 1px 2px rgba(255, 255, 255, 0.04),   /* tiny highlight edge */
    inset 0 1px 2px rgba(255, 255, 255, 0.03); /* gentle inner sheen */

}
.service-icon {
  width: 100%;
  text-align: center;
  font-size: 5rem;                /* Large, image-like */
  color: #FFD700;                 /* Gold base */
  margin-bottom: 1.2rem;
  text-shadow: 
    0 0 4px rgba(255,255,255,0.1),
    0 0 10px rgba(255,215,0,0.3),
    0 0 20px rgba(255,215,0,0.2);
  transition: transform 0.6s ease, color 0.6s ease, text-shadow 0.6s ease;
}

/* Hover shimmer & glow */
.service-icon:hover {
  color: #fff;                    /* White on hover */
  transform: scale(1.2) rotate(5deg);
  text-shadow:
    0 0 8px rgba(255,255,255,0.25),
    0 0 16px rgba(255,215,0,0.6),
    0 0 32px rgba(255,215,0,0.5),
    0 4px 12px rgba(0,0,0,0.25);
}

/* Optional subtle continuous shimmer animation */
@keyframes shimmer {
  0%   { text-shadow: 0 0 4px rgba(255,255,255,0.1), 0 0 10px rgba(255,215,0,0.3); }
  50%  { text-shadow: 0 0 6px rgba(255,255,255,0.15), 0 0 14px rgba(255,215,0,0.5); }
  100% { text-shadow: 0 0 4px rgba(255,255,255,0.1), 0 0 10px rgba(255,215,0,0.3); }
}
.service-icon {
  animation: shimmer 3s infinite ease-in-out;
}

.service-box h3{font-size:1.4rem}
.service-box h4{font-size:.95rem;color:#FFD700}
.service-desc{font-size:.95rem}
.service-toggle{background:none;border:none;color:#FFD700;font-weight:600;cursor:pointer;margin-top:.9rem}
.service-extra{max-height:0;overflow:hidden;transition:max-height .4s;color:#ddd}

@media(min-width:1024px){
  .service-1,.service-3{transform:translateY(-35%)}
}
@media(max-width:1023px){
  .services-wrap{flex-direction:column}
  .service-box{transform:none}
}

/* ===================== SERVICES INCLUDES ===================== */
.services-includes{
  background:linear-gradient(145deg,#0d0d0d,#000);
  color:#fff;padding:.2rem 1rem;border-radius:18px;
  box-shadow:0 20px 40px rgba(0,0,0,.45);
  max-width:1200px;margin:0 auto
}
.includes-accordion {
  display: grid;
  gap: 0.2rem;
}

.include-item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  overflow: hidden;
}

.include-toggle {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  padding: 0.4rem 1rem;        /* reduced padding for less vertical space */
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;         /* vertically center emoji + text */
  cursor: pointer;
  transition: background 0.25s ease;
}

.include-toggle:hover {
  background: rgba(255, 255, 255, 0.08); /* subtle hover highlight */
}

.include-toggle::after {
  content: "+";
  color: #FFD700;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}

.include-item.active .include-toggle::after {
  content: "−";
  transform: rotate(0deg);
}

.include-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1rem;
}

.include-item.active .include-content {
  padding: 0.5rem 1rem;        /* subtle padding when open */
}

.include-content p {
  font-size: 0.9rem;
  color: #ddd;
  line-height: 1.4;
  margin: 0;                   /* remove extra default spacing */
  padding: 0.4rem 0;           /* tighter vertical spacing */
}

/* ===================== TESTIMONIALS ===================== */
.testimonials{background:#0f0f0f;padding:4rem 1rem;color:#fff;font-family:'Helvetica Neue',sans-serif;}
.testimonials-inner{max-width:950px;margin:0 auto;text-align:center;}
.testimonials h2{color:#FFD700;font-size:2rem;margin-bottom:0.5rem;text-shadow:0 0 10px rgba(255,215,0,0.6);}
.testimonials-intro{margin-bottom:2.5rem;font-size:1rem;color:#ccc;}
.testimonial-card{background:rgba(255,255,255,0.05);backdrop-filter:blur(15px);-webkit-backdrop-filter:blur(15px);padding:2rem;border-radius:15px;display:flex;flex-direction:column;align-items:center;gap:1rem;box-shadow:0 8px 25px rgba(255,255,255,0.08),0 12px 30px rgba(0,0,0,0.7);transition:transform 0.3s,box-shadow 0.3s;}
.testimonial-card:hover{transform:translateY(-6px);box-shadow:0 15px 35px rgba(255,255,255,0.1),0 20px 40px rgba(0,0,0,0.75);}
.testimonial-header{display:flex;align-items:center;gap:1rem;flex-wrap:wrap;}
.testimonial-photo{width:70px;height:70px;border-radius:50%;object-fit:cover;box-shadow:0 0 15px rgba(255,255,255,0.25);}
.testimonial-stars span{color:#FFD700;font-size:1rem;margin-right:2px;text-shadow:0 0 4px rgba(255,215,0,0.5);}
.testimonial-text{font-size:1rem;max-width:650px;color:#eee;line-height:1.5;text-align:center;}
.testimonial-site{margin-top:1rem;}
.testimonial-site-thumb{width:90px;height:auto;border-radius:6px;transition:transform 0.3s,box-shadow 0.3s;box-shadow:0 0 5px rgba(255,255,255,0.1);}
.testimonial-site-thumb:hover{transform:scale(1.08);box-shadow:0 0 15px rgba(255,255,255,0.25);}
.testimonials-cta a{color:#FFD700;text-decoration:none;font-weight:bold;text-shadow:0 0 6px rgba(255,215,0,0.6);}


/* ===================== PREVIOUS WORK ===================== */
.previous-work{background:linear-gradient(160deg,#0d0d0d,#111);padding:4rem 1rem;color:#fff;text-align:center}
.previous-work h2{font-size:2.8rem;margin-bottom:.5rem;letter-spacing:1px}
.previous-work h3{font-size:1.8rem;margin-bottom:2rem;color:#d4af37}
.previous-work-intro{max-width:900px;margin:0 auto 3rem auto;font-size:1.1rem;line-height:1.6;color:#ccc}
.work-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
@media(max-width:900px){.work-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.work-grid{grid-template-columns:1fr}}
.work-card{background:#111;border-radius:12px;overflow:hidden;box-shadow:0 0 15px rgba(255,255,255,.1),0 8px 20px rgba(0,0,0,.5);transition:transform .3s ease,box-shadow .3s ease}
.work-card:hover{transform:translateY(-6px);box-shadow:0 0 25px rgba(255,255,255,.3),0 12px 28px rgba(0,0,0,.7)}
.work-thumb{width:100%;overflow:hidden;position:relative}
.work-thumb img{width:100%;height:220px;object-fit:cover;display:block;transition:transform .4s ease,filter .4s ease}
.work-card:hover .work-thumb img{transform:scale(1.05);filter:brightness(1.05)}
.work-meta{padding:1rem 1.5rem 1.5rem 1.5rem;text-align:left}
.work-meta h4{font-size:1.4rem;margin-bottom:.5rem;color:#d4af37}
.work-meta p{font-size:1rem;color:#ccc}
.previous-work-cta{margin-top:2rem}
.cta-button{background:#d4af37;color:#111;padding:.85rem 2rem;border-radius:50px;font-weight:600;text-decoration:none;transition:all .3s ease}
.cta-button:hover{background:#fff;color:#111;transform:scale(1.05)}


/* ===================== CONTACT ===================== */
.contact-section{background:#111;color:#fff;padding:5rem 1rem}
.contact-container{display:flex;gap:2rem;flex-wrap:wrap}
.contact-box{background:rgba(20,20,20,0.85);backdrop-filter:blur(6px);padding:2rem;border-radius:16px;box-shadow:0 10px 30px rgba(255,255,255,0.05),0 10px 20px rgba(0,0,0,0.6);transition:transform .3s,box-shadow .3s}
.contact-box:hover{transform:translateY(-5px);box-shadow:0 15px 40px rgba(255,255,255,0.08),0 15px 30px rgba(0,0,0,0.65)}
.contact-section h2{color:#FFD700;font-size:1.8rem;margin-bottom:0.5rem}
.contact-section h3{color:#fff;font-size:1.3rem;margin-bottom:0.5rem}
.contact-intro{margin-bottom:2rem;font-size:1rem;color:#ccc}
.contact-info p{margin:0.3rem 0;font-size:.95rem}
.contact-info a{color:#FFD700;text-decoration:none;transition:color .3s}
.contact-info a:hover{color:#fff;text-decoration:underline}
.contact-icons{display:flex;gap:.72rem;font-size:.9rem}
.contact-icons a{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:50%;background:linear-gradient(145deg,#111,#000);color:#fff;text-decoration:none;position:relative;overflow:hidden;transition:transform .3s,box-shadow .3s,color .3s;box-shadow:0 4px 6px rgba(0,0,0,.5),inset 0 1px 2px rgba(255,255,255,.05)}
.contact-icons a::before{content:"";position:absolute;top:0;left:0;width:100%;height:50%;background:rgba(255,255,255,.12);border-radius:50%;}
.contact-icons a:hover,.contact-icons a:focus{color:#FFD700;transform:scale(1.25) rotate(5deg);box-shadow:0 6px 12px rgba(0,0,0,.6),inset 0 2px 4px rgba(255,255,255,.12)}
.contact-cta p{margin:1rem 0;font-size:1rem;color:#ccc}
.cta-button{display:inline-flex;align-items:center;justify-content:center;padding:.9rem 2.4rem;font-weight:700;font-size:1rem;letter-spacing:.55px;text-decoration:none;color:#FFD700;border-radius:999px;background:linear-gradient(180deg,#1a1a1a 0%,#070707 100%);box-shadow:0 0 18px rgba(255,255,255,.14),0 18px 40px rgba(0,0,0,.85),inset 0 1px 0 rgba(255,255,255,.22),inset 0 -6px 12px rgba(0,0,0,.9);position:relative;overflow:hidden;transition:transform .28s cubic-bezier(.22,.61,.36,1),box-shadow .28s cubic-bezier(.22,.61,.36,1),color .25s ease}
.cta-button::before{content:"";position:absolute;inset:0;background:linear-gradient(120deg,transparent 30%,rgba(255,255,255,.55),transparent 70%);opacity:.28;transform:translateX(-140%);transition:transform .9s ease;}
.cta-button:hover{color:#fff;transform:translateY(-4px);box-shadow:0 0 30px rgba(255,255,255,.26),0 28px 60px rgba(0,0,0,.9),inset 0 1px 0 rgba(255,255,255,.3),inset 0 -8px 16px rgba(0,0,0,.95)}
.cta-button:hover::before{transform:translateX(140%)}
.cta-button:active{color:#fff;transform:translateY(-1px) scale(.96);box-shadow:0 0 14px rgba(255,255,255,.16),0 14px 28px rgba(0,0,0,.45),inset 0 4px 10px rgba(0,0,0,.9)}
@media(max-width:768px){.contact-container{flex-direction:column}.cta-button{padding:.8rem 1.9rem;font-size:.95rem}.contact-icons a{width:32px;height:32px}}


.about-section{padding:3rem 1rem;background:linear-gradient(145deg,#0d0d0d,#111);color:#fff;font-family:Arial,sans-serif;}
.about-header{text-align:center;max-width:900px;margin:0 auto 2rem;}
.about-header h2{font-size:2rem;color:#FFD700;margin-bottom:1rem;}
.about-header p{font-weight:500;line-height:1.6;color:#ccc;margin-bottom:0.8rem;}
.about-container{display:flex;flex-wrap:wrap;gap:2rem;max-width:1200px;margin:0 auto;}
.about-left{flex:1 1 400px;min-width:300px;}
.about-features{display:flex;flex-direction:column;gap:1rem;margin-bottom:2rem;}
.about-features .feature{display:flex;align-items:flex-start;gap:0.75rem;}
.about-features .feature i{font-size:1.2rem;color:#FFD700;margin-top:4px;}
.about-features .feature p{margin:0;color:#ccc;}
.about-cta{display:flex;flex-direction:column;gap:1rem;}
.about-cta .cta-block p{margin-bottom:0.5rem;color:#ccc;}
.about-cta .cta-button{display:inline-flex;align-items:center;justify-content:center;padding:0.9rem 2.4rem;font-weight:700;font-size:1rem;letter-spacing:.55px;text-decoration:none;color:#FFD700;border-radius:999px;background:linear-gradient(180deg,#1a1a1a 0%,#070707 100%);box-shadow:0 0 18px rgba(255,255,255,.14),0 18px 40px rgba(0,0,0,.85),inset 0 1px 0 rgba(255,255,255,.22),inset 0 -6px 12px rgba(0,0,0,.9);position:relative;overflow:hidden;transition:transform .28s cubic-bezier(.22,.61,.36,1),box-shadow .28s cubic-bezier(.22,.61,.36,1),color .25s ease;}
.about-cta .cta-button::before{content:"";position:absolute;inset:0;background:linear-gradient(120deg,transparent 30%,rgba(255,255,255,.55),transparent 70%);opacity:.28;transform:translateX(-140%);transition:transform .9s ease;}
.about-cta .cta-button:hover{color:#fff;transform:translateY(-4px);box-shadow:0 0 30px rgba(255,255,255,.26),0 28px 60px rgba(0,0,0,.9),inset 0 1px 0 rgba(255,255,255,.3),inset 0 -8px 16px rgba(0,0,0,.95);}
.about-cta .cta-button:hover::before{transform:translateX(140%);}
.about-cta .cta-button:active{transform:translateY(-1px) scale(.96);}
.about-right{flex:1 1 400px;min-width:300px;}
.project-grid img {
  width: 10%;
  height: auto;
  max-width: 30%;
}
.about-me {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
}

.about-me img {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  object-fit: cover;
  border-radius: 50%;
}

.about-me-text h3 {
  margin: 0 0 0.25rem;
  color: #d4af37;
}

.about-me-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #ccc;
}

.project-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem;}
.project-item img{width:100%;height:auto;border-radius:10px;box-shadow:0 4px 15px rgba(0,0,0,0.3);transition:transform .35s ease,box-shadow .35s ease;}
.project-item img:hover{transform:scale(1.08) rotate(1deg);box-shadow:0 8px 25px rgba(0,0,0,0.5);}
.contact-cta{margin-top:2rem;text-align:center;}
.contact-cta p{color:#ccc;font-size:1rem;margin-bottom:1rem;}
@media(max-width:768px){.about-container{flex-direction:column}.project-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:480px){.project-grid{grid-template-columns:1fr;}}

.site-footer { background:#111; color:#eee; font-family:sans-serif; padding:3rem 1rem 1rem; }
.footer-container { display:flex; flex-wrap:wrap; justify-content:space-between; max-width:1400px; margin:0 auto; gap:2rem; }
.footer-col { flex:1 1 200px; min-width:200px; }
.footer-col h3 { color:#d4af37; margin-bottom:1rem; font-size:1.2rem; }
.footer-col p, .footer-col li, .footer-col a { font-size:0.9rem; color:#eee; line-height:1.5; text-decoration:none; }
.footer-col ul { list-style:none; padding:0; margin:0; }
.footer-col ul li { margin-bottom:0.5rem; }
.footer-col ul li a:hover { color:#d4af37; }
.footer-social a { display:inline-block; margin-right:0.5rem; font-size:1.2rem; color:#eee; transition:0.3s; }
.footer-social a:hover { color:#d4af37; }
.footer-contact a.cta-button, .newsletter-form button { display:inline-block; margin-top:0.5rem; padding:0.5rem 1rem; background:#d4af37; color:#111; border-radius:5px; text-decoration:none; font-weight:bold; transition:0.3s; border:none; cursor:pointer; }
.footer-contact a.cta-button:hover, .newsletter-form button:hover { background:#fff; color:#111; }
.newsletter-form input { padding:0.5rem; width:70%; border:none; border-radius:5px; margin-right:0.5rem; }
.footer-bottom { text-align:center; font-size:0.8rem; margin-top:2rem; border-top:1px solid #333; padding-top:1rem; }
.footer-bottom a { color:#eee; text-decoration:underline; }
.footer-bottom a:hover { color:#d4af37; }
.back-to-top { font-weight:bold; }
@media(max-width:1024px){.footer-container{flex-direction:column;text-align:center}.footer-col{margin-bottom:2rem}.footer-social a{font-size:1.5rem}.newsletter-form input{width:60%;}}
@media(max-width:480px){.newsletter-form input{width:100%;margin-bottom:0.5rem}.newsletter-form button{width:100%;}}