/* Theme Name: Kaaam Pro Description: Custom Premium Theme for ATCO International Author: Kaaam.net Version: 1.0 */ 

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


 /* ================================ 
GLOBAL RESET 
================================ */ 
* {
 margin: 0; padding: 0; box-sizing: border-box;
 } body { 
font-family: 'Poppins', sans-serif;
 background-color: #000; 
color: #ddd; line-height: 1.7;
 }

 img { 
max-width: 100%; height: auto;

 } 

a { 
color: #d4af37;
 text-decoration: none; transition: 0.3s ease;
 } 

a:hover { 
  color: #b8922c; 
 } 



/* ================================
 HEADINGS 
================================ */

 h1, h2, h3, h4, h5, h6

 { 
color: #d4af37; 
font-weight: 600;
}

/* ================================
     BUTTONS 
    ================================ */ 
.gold-btn {
	background: #d4af37;
	color: #000 !important;
	padding: 14px 32px;
	border-radius: 50px;
	font-weight: 600;
	display: inline-block;
	transition: 0.3s ease;
}
.gold-btn:hover
{
	background: #b8922c;
	transform: translateY(-3px);
}
.outline-btn { 
	border: 2px solid #d4af37;
	color: #d4af37;
	padding: 12px 30px; 
	border-radius: 40px;
	display: inline-block;
} 

.outline-btn:hover
{ 
	background: #d4af37;
	color: #000;
}

/* ================================
   HERO SLIDER
  ================================ */
.hero-slider { 
	position: relative;
	width: 100%;
	height: 95vh;
	overflow: hidden;
}
.hero-slider .slide
{
	position: absolute;
	inset: 0;
	background-size: cover; 
	background-position: center;
	opacity: 0; 
	transition: opacity 1.5s ease-in-out;
}
.hero-slider .slide.active
{	opacity: 1; }
.hero-slider::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.55); z-index: 1; } 
.hero-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; text-align: center; max-width: 900px; padding: 20px; }
.hero-content h1 { font-size: 3.2rem; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; color: #eee; }



/* ================================ 
   ABOUT SECTION 
================================ */ 
.about-section { padding: 90px 20px; text-align: center; }
.about-section p { max-width: 850px; margin: auto; color: #ccc; }


/* ================================
   PROJECTS SECTION 
================================ */
.projects-section
{
	padding: 90px 20px;
	background: #0d0d0d;
}
.projects-grid 
{ 
	max-width: 1200px;
	margin: auto;
	display: grid; 
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px;
} 
.project-card
{ 
	background: #111;
	padding: 30px;
	border-radius: 18px;
	border: 1px solid #2d2d2d; 
	transition: 0.3s ease; text-align: center;
}
.project-card:hover
{
	border-color: #d4af37; transform: translateY(-5px);
} 
.project-card h3 { margin-bottom: 15px;
}


/* ================================ 
  CTA SECTION
================================ */
.contact-cta { padding: 90px 20px; text-align: center; } 
.contact-cta p { max-width: 850px; margin: auto; color: #ccc; }



/* ================================ 
  FOOTER
================================ */ 
.site-footer
{ 
	background: #000; padding: 70px 20px 30px; border-top: 1px solid #2d2d2d;
} 
.footer-container { max-width: 1200px; margin: auto; } 
.footer-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 40px; 
} 
.footer-columns h3, .footer-columns h4 { margin-bottom: 15px; } .footer-columns p { color: #bbb; } .footer-menu li { list-style: none; margin-bottom: 10px; } .footer-bottom { margin-top: 40px; text-align: center; color: #777; font-size: 0.9rem; }


/* ================================
   LEADERSHIP PAGE 
================================ */ 
.leadership-section { padding: 90px 20px; text-align: center; } 
.leader-box { max-width: 900px; margin: 50px auto; background: #0d0d0d; padding: 40px; border-radius: 20px; border: 1px solid #2d2d2d; transition: 0.3s ease; }
.leader-box:hover { border-color: #d4af37; }
.leader-box img { width: 260px; border-radius: 20px; margin-bottom: 25px; border: 3px solid #d4af37; } 
.leader-box p { text-align: justify; color: #ccc; } 



/* ================================ 
 RESPONSIVE
================================ */
@media (max-width: 768px) { .hero-content h1 { font-size: 2.2rem; } .hero-content p { font-size: 1rem; }
	.leader-box { padding: 25px; } 
	.leader-box img { width: 200px; }
}



/* ================================
   ANIMATIONS & SCROLL EFFECTS
   ================================ */ 
/* Fade Up Animation */ 
.fade-up { opacity: 0; transform: translateY(40px); transition: all 0.9s ease; } .fade-up.show { opacity: 1; transform: translateY(0); }

/* Fade In */ 

.fade-in { opacity: 0; transition: opacity 1.2s ease; } .fade-in.show { opacity: 1; }

/* Hero Zoom Effect */
.hero-slider .slide { animation: zoomHero 10s ease-in-out infinite; } @keyframes zoomHero { 0% { transform: scale(1); } 50% { transform: scale(1.07); } 100% { transform: scale(1); } }

/* Card Hover Glow */

.project-card:hover, .leader-box:hover { box-shadow: 0 0 30px rgba(212,175,55,0.15); } /* Button Glow */ .gold-btn:hover { box-shadow: 0 0 20px rgba(212,175,55,0.6); }

/* HERO PREMIUM OVERLAY */

.hero-slider::after { content: ""; position: absolute; inset: 0; background: linear-gradient( to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.9) ); z-index: 2; }
.hero-slider .hero-content { z-index: 3; max-width: 900px; padding: 20px; } 
.hero-slider h1 { letter-spacing: 1px; text-transform: uppercase; }
@media(max-width:768px)
{ .about-section .container{ grid-template-columns:1fr !important; } }
.project-card { position: relative; overflow: hidden; }
.project-card::before { content:""; position:absolute; inset:0; background: linear-gradient( to top, rgba(0,0,0,0.8), transparent ); opacity:0; transition:0.4s; } 
.project-card:hover::before { opacity:1; } .contact-cta { background: radial-gradient(circle at top, #111, #000); }

/* IMAGE BASED PROJECTS */ 
.image-projects { grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); } 
.project-image-card { height: 360px; border-radius: 20px; background-size: cover; background-position: center; position: relative; overflow: hidden; border: 1px solid #2d2d2d; transition: 0.4s ease; }
.project-image-card:hover { transform: translateY(-6px); border-color: #d4af37; }

/* Overlay */ 

.project-overlay { position: absolute; inset: 0; background: linear-gradient( to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2) ); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; opacity: 0; transition: 0.4s ease;
} 
.project-image-card:hover .project-overlay { opacity: 1; }
.project-overlay h3 { color: #d4af37; font-size: 1.5rem; margin-bottom: 8px; } 
.project-overlay p { color: #ddd; font-size: 1rem; margin-bottom: 15px; } 
.project-overlay a { color: #000; background: #d4af37; padding: 10px 22px; border-radius: 30px; font-weight: 600; width: fit-content; text-decoration: none; } 
.project-overlay a:hover { background: #b8922c; } @media(max-width:768px){ .project-image-card{ height: 300px; } } 



/* ================================
 *  ATCO STATISTICS SECTION 
 ================================ */ 
.atco-stats { background: linear-gradient(180deg, #000, #0d0d0d); padding: 90px 20px; }
.stats-container { max-width: 1100px; margin: auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 40px; text-align: center;
} 
.stat-box { background: #111; padding: 45px 20px; border-radius: 18px; border: 1px solid #2d2d2d; transition: 0.35s ease; } .stat-box:hover { border-color: #d4af37; transform: translateY(-6px); }

/* Numbers */ 
.stat-box h2 { color: #d4af37; font-size: 3rem; font-weight: 700; margin-bottom: 10px; }

/* Labels */

.stat-box p { color: #ccc; font-size: 1.1rem; letter-spacing: 0.5px; }

/* Mobile */ @media(max-width:768px){ .stat-box h2 { font-size: 2.4rem; } } 

/* ================================ WHY CHOOSE ATCO ================================ */ 

.why-atco { background: #000; padding: 100px 20px; }
.why-header { max-width: 900px; margin: auto; text-align: center; margin-bottom: 70px; } 
.why-header h2 { color: #d4af37; font-size: 2.6rem; margin-bottom: 15px; }
.why-header p { color: #ccc; font-size: 1.1rem; line-height: 1.8; }
.why-grid { max-width: 1100px; margin: auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 35px; } 
.why-box { background: #111; padding: 40px 30px; border-radius: 18px; border: 1px solid #2d2d2d; text-align: center; transition: 0.35s ease; } 
.why-box:hover { border-color: #d4af37; transform: translateY(-8px); }

/* Icon */

.why-icon { display: inline-flex; align-items: center; justify-content: center; width: 70px; height: 70px; border-radius: 50%; background: rgba(212,175,55,0.12); color: #d4af37; font-size: 2rem; margin-bottom: 20px; }

/* Title */
.why-box h3 { color: #d4af37; font-size: 1.4rem; margin-bottom: 12px; }

/* Text */
.why-box p { color: #bbb; font-size: 1rem; line-height: 1.7; }

/* Mobile */ 
@media(max-width:768px){ .why-header h2 { font-size: 2.2rem; } }


/* ================================ CLIENTS & PARTNERS ================================ */ 
.atco-clients { background: #0b0b0b; padding: 90px 20px; overflow: hidden; }
.clients-header { max-width: 900px; margin: auto; text-align: center; margin-bottom: 50px; } 
.clients-header h2 { color: #d4af37; font-size: 2.5rem; margin-bottom: 12px; } 
.clients-header p { color: #ccc; font-size: 1.1rem; }

/* Slider */ 
.clients-slider { position: relative; width: 100%; overflow: hidden; } 
.clients-track { display: flex; gap: 40px; width: max-content; animation: clients-scroll 40s linear infinite; }

/* Logo Box */ 
.client-logo { min-width: 220px; height: 90px; background: #111; border: 1px solid #2d2d2d; border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #d4af37; font-weight: 600; font-size: 1rem; text-align: center; padding: 10px; transition: 0.3s ease; }
.client-logo:hover { border-color: #d4af37; transform: scale(1.05); } 

/* Animation */ 
@keyframes clients-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Mobile */ @media(max-width:768px) { .clients-header h2 { font-size: 2.1rem; }
	.client-logo { min-width: 180px; height: 80px; font-size: 0.9rem; } }


/* ================================ TESTIMONIALS ================================ */
.atco-testimonials { background: #000; padding: 100px 20px; text-align: center; } 
.testimonials-header { max-width: 900px; margin: auto; margin-bottom: 60px; } 
.testimonials-header h2 { color: #d4af37; font-size: 2.5rem; margin-bottom: 12px; }
.testimonials-header p { color: #ccc; font-size: 1.1rem; }

/* Slider */ 
.testimonial-slider { position: relative; max-width: 900px; margin: auto; } 
.testimonial { display: none; background: #0d0d0d; padding: 45px; border-radius: 20px; border: 1px solid #2d2d2d; box-shadow: 0 0 25px rgba(212, 175, 55, 0.05); transition: 0.5s ease; }
.testimonial.active { display: block; }

/* Text */ 

.testimonial p { color: #ddd; font-size: 1.15rem; line-height: 1.9; margin-bottom: 30px; font-style: italic; }
.testimonial h4 { color: #d4af37; font-size: 1.3rem; margin-bottom: 5px; }
.testimonial span { color: #aaa; font-size: 0.95rem; } /* Mobile */ @media(max-width:768px) 
{ 
	.testimonials-header h2 { font-size: 2.1rem; } .testimonial { padding: 30px; } .testimonial p { font-size: 1.05rem; }
}


/* ================================ CERTIFICATIONS & COMPLIANCE ================================ */ 

.atco-certifications { background: #0b0b0b; padding: 100px 20px; text-align: center; }
.cert-header { max-width: 900px; margin: auto; margin-bottom: 70px; } 
.cert-header h2 { color: #d4af37; font-size: 2.5rem; margin-bottom: 15px; } 										
.cert-header p { color: #ccc; font-size: 1.1rem; line-height: 1.8; }

/* Grid */

.cert-grid { max-width: 1100px; margin: auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; } 
.cert-box { background: #111; padding: 35px 25px; border-radius: 18px; border: 1px solid #2d2d2d; transition: 0.3s ease; } .cert-box:hover { border-color: #d4af37; transform: translateY(-5px); }

/* Icons */
.cert-box img { max-width: 90px; margin-bottom: 20px; filter: brightness(1.1); }
/* Text */ 
.cert-box h4 { color: #d4af37; font-size: 1.25rem; margin-bottom: 10px; }
.cert-box p { color: #bbb; font-size: 0.95rem; line-height: 1.7; }

/* Mobile */
@media(max-width:768px) 
{ 
	.cert-header h2 { font-size: 2.1rem; } }


/* ================================ GLOBAL PRESENCE ================================ */ 

.atco-global { background: #000; padding: 100px 20px; }
.global-header { max-width: 900px; margin: auto; text-align: center; margin-bottom: 70px; } 
.global-header h2 { color: #d4af37; font-size: 2.6rem; margin-bottom: 15px; }
.global-header p { color: #ccc; font-size: 1.1rem; line-height: 1.8; }

/* Layout */ 
.global-wrapper { max-width: 1200px; margin: auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; } 

/* Map */
.global-map img { width: 100%; opacity: 0.9; filter: brightness(0.9); }

/* Locations */ 
.global-locations { display: flex; flex-direction: column; gap: 25px; } 
.location-box { background: #0d0d0d; padding: 30px; border-radius: 16px; border: 1px solid #2d2d2d; transition: 0.3s ease; }
.location-box:hover { border-color: #d4af37; transform: translateX(5px); } .location-box h4 { color: #d4af37; font-size: 1.3rem; margin-bottom: 10px; }
.location-box p { color: #bbb; font-size: 1rem; line-height: 1.7; }

/* Mobile */
@media(max-width: 900px)
{
	.global-wrapper { grid-template-columns: 1fr; text-align: center;
	} 
	.location-box:hover { transform: none; } } 


/* ================================ ATCO STATS COUNTER ================================ */

.atco-stats { background: linear-gradient(180deg, #000, #0b0b0b); padding: 90px 20px; }
.stats-wrapper { max-width: 1100px; margin: auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; text-align: center; }
.stat-box { background: #111; padding: 40px 20px; border-radius: 18px; border: 1px solid #2d2d2d; transition: 0.3s ease; } .stat-box:hover { border-color: #d4af37; transform: translateY(-6px); }
.stat-box .counter { font-size: 3.2rem; font-weight: 800; color: #d4af37; display: block; margin-bottom: 10px; }
.stat-box h4 { color: #ccc; font-size: 1.1rem; font-weight: 500; }

/* ================================ ATCO PARTNERS SLIDER ================================ */

.atco-partners { background: #000; padding: 80px 20px; text-align: center; } 
.atco-partners h2 { color: #d4af37; font-size: 2.2rem; margin-bottom: 40px; }
.partners-slider { overflow: hidden; position: relative; }
.partners-track { display: flex; width: max-content; animation: scrollPartners 30s linear infinite; }
.partners-track img { height: 80px; margin: 0 40px; filter: grayscale(100%); opacity: 0.8; transition: 0.3s ease; } .partners-track img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.05); } @keyframes scrollPartners { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } } 

/* Mobile */ 
@media(max-width:768px) { .partners-track img { height: 55px; margin: 0 25px; } }

/* ================================ ATCO MEGA CTA SECTION ================================ */

.atco-mega-cta { position: relative; background: url("https://atcotexas.com/wp-content/uploads/cta-bg.jpg") center/cover no-repeat; padding: 120px 20px; text-align: center; overflow: hidden; } 
.atco-mega-cta .cta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.75); z-index: 1; } 
.atco-mega-cta .cta-content { position: relative; z-index: 2; max-width: 900px; margin: auto; } 
.atco-mega-cta h2 { color: #d4af37; font-size: 2.8rem; margin-bottom: 20px; font-weight: 700; }
.atco-mega-cta p { color: #ddd; font-size: 1.2rem; line-height: 1.8; margin-bottom: 40px; } 

/* Buttons */
.cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; } .cta-btn { padding: 15px 36px; border-radius: 50px; font-weight: 600; text-decoration: none; transition: 0.3s ease; font-size: 1rem; } 
.cta-btn.gold { background: #d4af37; color: #000; }
.cta-btn.gold:hover { background: #b8922c; transform: translateY(-3px); }
.cta-btn.outline { border: 2px solid #d4af37; color: #d4af37; } 
.cta-btn.outline:hover { background: #d4af37; color: #000; transform: translateY(-3px); }

/* Mobile */
@media(max-width:768px) { .atco-mega-cta { padding: 80px 20px; } 
	.atco-mega-cta h2 { font-size: 2rem; } .atco-mega-cta p { font-size: 1rem; } }


/* ================================ ATCO CTA SECTION (FINAL) ================================ */

.contact-cta { position: relative; padding: 100px 20px; text-align: center; background-image: linear-gradient( rgba(0,0,0,0.75), rgba(0,0,0,0.75) ), url("https://atcotexas.com/test/wp-content/uploads/2026/01/ChatGPT-Image-Jan-7-2026-11_52_43-AM.png"); background-size: cover; background-position: center; background-attachment: fixed; } 
.contact-cta h2 { font-size: 2.6rem; color: #d4af37; font-weight: 700; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; } 
.contact-cta p { font-size: 1.15rem; color: #e0e0e0; max-width: 800px; margin: auto; line-height: 1.8; } 
.contact-cta .gold-btn { margin-top: 30px; padding: 15px 40px; font-size: 1rem; font-weight: 600; border-radius: 50px; background: linear-gradient(135deg, #d4af37, #b8922c); color: #000 !important; text-decoration: none; display: inline-block; transition: all 0.3s ease; box-shadow: 0 8px 25px rgba(212,175,55,0.4); } 
.contact-cta .gold-btn:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(212,175,55,0.6); } 

/* Mobile */
@media (max-width: 768px) { .contact-cta { padding: 70px 20px; background-attachment: scroll; } 
	.contact-cta h2 { font-size: 2rem; } .contact-cta p { font-size: 1rem; } }







/* ================================
   ABOUT SECTION – PREMIUM
================================ */

.about-section {
    padding: 90px 20px;
    background: #000;
    text-align: center;
}

.about-section h2 {
    font-size: 2.4rem;
    color: #d4af37;
    margin-bottom: 20px;
    letter-spacing: 1px;
    animation: fadeUp 1s ease forwards;
}

.about-section p {
    max-width: 850px;
    margin: auto;
    color: #ccc;
    line-height: 1.9;
    font-size: 1.05rem;
    animation: fadeUp 1.2s ease forwards;
}

.about-section .outline-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 34px;
    border-radius: 40px;
    border: 2px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-section .outline-btn:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-3px);
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}







/* ================================
   PROJECTS SECTION – PREMIUM
================================ */

.projects-section {
    background: #0b0b0b;
    padding: 90px 20px;
}

.projects-section h2 {
    text-align: center;
    color: #d4af37;
    font-size: 2.4rem;
    margin-bottom: 50px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.project-card {
    background: linear-gradient(180deg, #111, #0a0a0a);
    padding: 30px 25px;
    border-radius: 18px;
    border: 1px solid #222;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Gold glow line */
.project-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transition: 0.6s;
}

.project-card:hover::before {
    left: 100%;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #d4af37;
    box-shadow: 0 15px 40px rgba(212,175,55,0.25);
}

.project-card h3 {
    color: #d4af37;
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.project-card p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.project-card a {
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
}

.project-card a:hover {
    text-decoration: underline;
}





@media (max-width: 768px) {
    .about-section h2,
    .projects-section h2 {
        font-size: 2rem;
    }

    .project-card {
        padding: 25px 20px;
    }
}





/* ================================
   LEADERSHIP CARD ANIMATIONS
================================ */

/* Initial hidden state */
.leader-box {
  opacity: 0;
  transform: translateY(60px) scale(0.97);
  transition: all 0.9s ease;
}

/* When visible */
.leader-box.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Hover premium effect */
.leader-box:hover {
  box-shadow: 0 0 35px rgba(212,175,55,0.25);
  transform: translateY(-8px) scale(1.02);
}

/* Image subtle zoom */
.leader-box img {
  transition: transform 0.6s ease;
}

.leader-box:hover img {
  transform: scale(1.05);
}



/* ================================
   LEADERSHIP STAGGER ANIMATION
================================ */

.leader-box {
  opacity: 0;
  transform: translateY(60px) scale(0.97);
  transition: opacity 0.9s ease, transform 0.9s ease, box-shadow 0.4s ease;
  transition-delay: var(--delay);
}

.leader-box.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Premium hover */
.leader-box:hover {
  box-shadow: 0 0 35px rgba(212,175,55,0.25);
  transform: translateY(-8px) scale(1.02);
}

/* Image soft zoom */
.leader-box img {
  transition: transform 0.6s ease;
}

.leader-box:hover img {
  transform: scale(1.05);
}



/* ================================
   STICKY HEADER (SAFE)
================================ */

.site-header {
    position: relative;
    width: 100%;
    background: #000;
    z-index: 999;
    transition: all 0.35s ease;
    border-bottom: 1px solid rgba(212,175,55,0.15);
}

.site-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.6);
}

/* Header inner */
.header-container {
    max-width: 1300px;
    margin: auto;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.site-header .logo a {
    color: #d4af37;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Menu */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

.main-nav ul li a {
    color: #ddd;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

/* Hover underline */
.main-nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #d4af37;
    transition: 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li.current-menu-item a::after {
    width: 100%;
}

.main-nav ul li a:hover {
    color: #d4af37;
}

/* Space fix when sticky */
body.has-sticky-header {
    padding-top: 90px;
}



/* ================================
   ACTIVE MENU HIGHLIGHT
================================ */

.main-nav ul li a {
    position: relative;
    padding-bottom: 6px;
}

.main-nav ul li.current-menu-item > a,
.main-nav ul li.current_page_item > a {
    color: #d4af37;
}

/* Gold underline effect */
.main-nav ul li.current-menu-item > a::after,
.main-nav ul li.current_page_item > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #d4af37;
}




/* ================================
   HEADER CTA BUTTON
================================ */

.header-cta {
    margin-left: 30px;
}

.header-btn {
    padding: 10px 26px;
    font-size: 0.95rem;
    border-radius: 40px;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(212,175,55,0.35);
}

/* Desktop Header Layout Fix */
.site-header .header-inner,
.site-header .header-wrap {
    display: flex;
    align-items: center;
}

/* Mobile */
@media (max-width: 992px) {
    .header-cta {
        display: none;
    }
}





/* ================================
   SERVICES MEGA MENU
================================ */

.primary-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.primary-menu li {
    position: relative;
}

.primary-menu > li > a {
    color: #ddd;
    font-weight: 500;
    padding: 12px 0;
}

/* Dropdown Container */
.primary-menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    background: #0d0d0d;
    border: 1px solid #2d2d2d;
    border-radius: 16px;
    padding: 25px;
    display: none;
    z-index: 999;
}

/* Show on hover */
.primary-menu li:hover > ul {
    display: grid;
}

/* Mega Grid */
.primary-menu li ul {
    grid-template-columns: 1fr;
    gap: 14px;
}

/* Dropdown Items */
.primary-menu li ul li a {
    color: #ccc;
    font-size: 0.95rem;
    padding: 10px 12px;
    border-radius: 8px;
    display: block;
    transition: 0.3s ease;
}

/* Hover Effect */
.primary-menu li ul li a:hover {
    background: rgba(212,175,55,0.12);
    color: #d4af37;
    padding-left: 16px;
}

/* Arrow Indicator */
.primary-menu > li.menu-item-has-children > a::after {
    content: "▾";
    margin-left: 6px;
    font-size: 0.7rem;
    color: #d4af37;
}

/* Shadow */
.primary-menu li ul {
    box-shadow: 0 20px 45px rgba(0,0,0,0.6);
}

/* Mobile */
@media (max-width: 992px) {
    .primary-menu {
        flex-direction: column;
        gap: 0;
    }

    .primary-menu li ul {
        position: relative;
        width: 100%;
        display: none;
        border-radius: 0;
        padding: 15px;
    }

    .primary-menu li.open > ul {
        display: block;
    }
}



/* ================================
   STICKY HEADER – KAAAM PRO
================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
}

/* Scroll state */
.site-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

/* Menu links */
.site-header a {
    color: #d4af37;
    font-weight: 500;
}

.site-header a:hover {
    color: #fff;
}

/* Logo resize on scroll */
.site-header.scrolled img {
    transform: scale(0.9);
}

/* Smooth animation */
.site-header img {
    transition: transform 0.3s ease;
}




/* ================================
   ATCO CONTACT PAGE
================================ */

.atco-contact {
    background: #000;
    color: #ddd;
    padding: 100px 20px;
}

.contact-header {
    max-width: 900px;
    margin: auto;
    text-align: center;
    margin-bottom: 70px;
}

.contact-header h1 {
    color: #d4af37;
    font-size: 2.6rem;
    margin-bottom: 15px;
}

.contact-header p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Grid */
.contact-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 40px;
}

/* Cards */
.contact-card {
    background: #0d0d0d;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #2d2d2d;
    transition: 0.35s ease;
}

.contact-card:hover {
    border-color: #d4af37;
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(212,175,55,0.15);
}

.contact-card h3 {
    color: #d4af37;
    margin-bottom: 12px;
    margin-top: 20px;
}

.contact-card p {
    color: #ccc;
    line-height: 1.8;
}

.contact-card strong {
    color: #d4af37;
}

/* Form */
.contact-form-box {
    margin-top: 20px;
}

/* Maps */
.contact-map {
    max-width: 1200px;
    margin: 70px auto 0;
}

.contact-map h2 {
    color: #d4af37;
    margin-bottom: 12px;
}

.contact-map iframe {
    width: 100%;
    height: 320px;
    border-radius: 14px;
    border: 2px solid #d4af37;
}

/* Mobile */
@media(max-width:768px) {
    .contact-header h1 {
        font-size: 2rem;
    }
    .contact-card {
        padding: 25px;
    }
}







/* ================================
   CONTACT CARD ICONS
================================ */

.contact-card {
    position: relative;
    overflow: hidden;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(212,175,55,0.12);
    color: #d4af37;
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 25px rgba(212,175,55,0.25);
    transition: 0.4s ease;
}

/* Hover Effect */
.contact-card:hover .card-icon {
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 0 40px rgba(212,175,55,0.45);
}





/* ================================
   FONT AWESOME ICON STYLE
================================ */

.card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.25), rgba(0,0,0,0.6));
    border: 1px solid rgba(212,175,55,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.4s ease;
}

.card-icon i {
    font-size: 28px;
    color: #d4af37;
}

/* Hover Luxury Effect */
.contact-card:hover .card-icon {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 0 45px rgba(212,175,55,0.55);
}
