/* ====================================
   PAGE LAYOUT
   Keeps footer at bottom of page
==================================== */

html, body{
height:100%;
}

body{
display:flex;
flex-direction:column;
min-height:100vh;
}

main{
flex:1;
}


/* ================================
   GLOBAL STYLES
   Basic reset and typography
================================ */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:"Inter", sans-serif;
color:#222;
line-height:1.6;
background:linear-gradient(to bottom,#ffffff,#fafafa);
}

/* ================================
   NAVBAR
   Top navigation bar
================================ */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 80px;
background:white;
border-bottom:1px solid #eee;
position:sticky;
top:0;
z-index:1000;
}

/* logo image */

.logo{
height:60px;
}

/* ====================================
   HERO SECTION
   Main introduction area
==================================== */

.hero{
background:#111;
color:white;
padding:180px 80px;
width:100%;
}

.hero-inner{
max-width:1100px;
margin:auto;
}

.hero h1{
font-family:"Playfair Display", serif;
font-size:64px;
margin-bottom:20px;
}

.hero p{
font-size:20px;
max-width:500px;
margin-bottom:30px;
color:#ddd;
}


/* ====================================
   AUTHORITY SECTION
   Explains positioning and expertise
==================================== */

.authority{
padding:140px 80px;
background:#f8f8f8;
}

.authority-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
max-width:1100px;
margin:auto;
align-items:center;
}

.authority-left h2{
font-family:"Playfair Display", serif;
font-size:48px;
line-height:1.2;
}

.authority-right p{
font-size:18px;
color:#555;
margin-bottom:20px;
}


/* ====================================
   SERVICES SECTION
   Copywriting services offered
==================================== */

.services{
padding:140px 80px;
background:#ffffff;
}

.services h2{
font-family:"Playfair Display", serif;
font-size:42px;
margin-bottom:60px;
text-align:center;
}

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
max-width:1200px;
margin:auto;
}

.service-card{
background:white;
padding:40px;
border:1px solid #eee;
transition:0.3s;
}

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.service-card h3{
margin-bottom:10px;
font-size:20px;
}

.service-card p{
color:#555;
}


/* ====================================
   STATEMENT SECTION
   Premium brand statement
==================================== */

.statement{
padding:160px 80px;
text-align:center;
font-family:"Playfair Display", serif;
font-size:40px;
max-width:900px;
margin:auto;
}


/* ====================================
   PROOF SECTION
   Shows expertise and approach
==================================== */

.proof{
padding:140px 80px;
background:#fafafa;
}

.proof h2{
font-family:"Playfair Display", serif;
font-size:42px;
margin-bottom:60px;
text-align:center;
}

.proof-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
max-width:1200px;
margin:auto;
}

.proof-card{
background:white;
padding:40px;
border:1px solid #eee;
transition:0.3s;
}

.proof-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 40px rgba(0,0,0,0.06);
}

.proof-card h3{
margin-bottom:15px;
}

.proof-card p{
color:#555;
}


/* ====================================
   FEATURED WORK SECTION
   Shows highlighted projects
==================================== */

.featured-work{
padding:140px 80px;
background:#ffffff;
}

.featured-work h2{
font-family:"Playfair Display", serif;
font-size:42px;
margin-bottom:50px;
text-align:center;
}

.work-card{
background:#f7f7f7;
padding:50px;
max-width:700px;
margin:auto;
}


/* ====================================
   CALL TO ACTION SECTION
==================================== */

.cta{
padding:140px 80px;
background:#111;
color:white;
text-align:center;
}

.cta h2{
font-family:"Playfair Display", serif;
font-size:42px;
margin-bottom:20px;
}

.cta p{
margin-bottom:30px;
color:#ddd;
}


/* ====================================
   BUTTON STYLING
==================================== */

.btn{
display:inline-block;
padding:14px 36px;
background:white;
color:black;
text-decoration:none;
font-size:14px;
letter-spacing:1px;
text-transform:uppercase;
transition:0.3s;
}

.btn:hover{
background:#c9a96e;
color:white;
}


/* ====================================
   RESPONSIVE DESIGN
   Mobile adjustments
==================================== */

@media(max-width:900px){

.hero{
padding:120px 20px;
}

.authority{
padding:100px 20px;
}

.services{
padding:100px 20px;
}

.statement{
padding:100px 20px;
font-size:30px;
}

.proof{
padding:100px 20px;
}

.featured-work{
padding:100px 20px;
}

.services-grid{
grid-template-columns:1fr;
}

.proof-grid{
grid-template-columns:1fr;
}

.authority-container{
grid-template-columns:1fr;
}

}

/* navigation links */

nav a{
margin-left:30px;
text-decoration:none;
color:#333;
font-weight:500;
position:relative;
}

/* animated underline effect */

nav a::after{
content:"";
position:absolute;
width:0;
height:2px;
background:#c9a96e;
left:0;
bottom:-4px;
transition:0.3s;
}

nav a:hover::after{
width:100%;
}


/* ================================
   WORK HERO
   Title section at top of work page
================================ */

.work-hero{
padding:140px 80px;
background:#f8f8f8;
}

.work-hero h1{
font-family:"Playfair Display", serif;
font-size:48px;
margin-bottom:10px;
}

.work-hero p{
max-width:600px;
color:#555;
}


/* ================================
   FEATURED COPY CAROUSEL
   Rotating copy examples
================================ */

.featured-copy{
padding:140px 80px;
text-align:center;
background:#fafafa;
}

/* carousel container */

.carousel{
overflow:hidden;
max-width:800px;
margin:auto;
}

/* slide wrapper */

.carousel-track{
display:flex;
transition:transform 0.6s ease;
}

/* individual slide */

.copy-slide{
min-width:100%;
padding:40px;
}

/* headline text */

.copy-highlight{
font-family:"Playfair Display", serif;
font-size:36px;
margin-bottom:20px;
}


/* ================================
   WORK SECTIONS
   Portfolio sections like case studies
================================ */

.work-section{
padding:120px 80px;
max-width:1200px;
margin:auto;
}

.work-section h2{
font-family:"Playfair Display", serif;
font-size:36px;
margin-bottom:40px;
}


/* ================================
   GRID LAYOUT
   Used for portfolio cards
================================ */

.work-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}


/* ================================
   WORK CARD
   Individual project cards
================================ */

.work-card{
background:#f7f7f7;
padding:35px;
transition:0.3s;
border:1px solid #eee;
}

/* hover effect */

.work-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.work-card h3{
margin-bottom:10px;
font-size:22px;
}

.work-card p{
color:#555;
}


/* ================================
   FOOTER
   Bottom section of website
================================ */

.footer{
background:#111;
color:white;
padding:80px 80px 40px;
}

/* footer grid layout */

.footer-container{
display:grid;
grid-template-columns:1fr 1fr 1fr;
gap:40px;
max-width:1200px;
margin:auto;
}

/* footer links */

.footer-links a{
display:block;
color:#ddd;
margin-bottom:10px;
text-decoration:none;
}

.footer-links a:hover{
color:white;
}

/* email link */

.footer-contact a{
color:#c9a96e;
text-decoration:none;
}

/* copyright */

.footer-copy{
text-align:center;
margin-top:40px;
color:#aaa;
}


/* ================================
   RESPONSIVE DESIGN
   Mobile layout adjustments
================================ */

@media(max-width:900px){

.navbar{
padding:20px;
}

.work-hero{
padding:100px 20px;
}

.featured-copy{
padding:100px 20px;
}

.work-section{
padding:100px 20px;
}

/* grid becomes single column */

.work-grid{
grid-template-columns:1fr;
}

/* footer stacks vertically */

.footer-container{
grid-template-columns:1fr;
}

}

/* ================================
   CAROUSEL BUTTONS
================================ */

.carousel{
position:relative;
overflow:hidden;
max-width:800px;
margin:auto;
}

.carousel-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
background:white;
border:none;
font-size:30px;
padding:10px 15px;
cursor:pointer;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.prev{
left:-10px;
}

.next{
right:-10px;
}


/* ================================
   CAROUSEL DOTS
================================ */

.carousel-dots{
margin-top:20px;
text-align:center;
}

.carousel-dots span{
display:inline-block;
width:10px;
height:10px;
background:#ccc;
margin:0 5px;
border-radius:50%;
cursor:pointer;
}

.carousel-dots .active{
background:#333;
}

/* ====================================
   CONTACT PAGE
   Main contact section layout
==================================== */

.contact-section{
padding:140px 80px;
max-width:900px;
margin:auto;
}


/* Contact page heading */

.contact-section h1{
font-family:"Playfair Display", serif;
font-size:48px;
margin-bottom:20px;
}


/* Intro paragraph */

.contact-section p{
font-size:18px;
color:#555;
margin-bottom:20px;
line-height:1.7;
}


/* ====================================
   EMAIL LINK
==================================== */

.contact-email a{
color:#c9a96e;
text-decoration:none;
font-weight:500;
}

.contact-email a:hover{
text-decoration:underline;
}


/* ====================================
   WHATSAPP CONTACT
==================================== */

.whatsapp-contact{
margin-top:30px;
display:flex;
align-items:center;
gap:10px;
font-size:18px;
}

/* WhatsApp icon */

.whatsapp-icon{
width:24px;
height:24px;
}

/* WhatsApp number */

.whatsapp-contact a{
color:#25D366;
text-decoration:none;
font-weight:500;
}

.whatsapp-contact a:hover{
text-decoration:underline;
}


/* ====================================
   CONTACT CARD STYLE
   (Optional premium layout)
==================================== */

.contact-card{
background:#f7f7f7;
padding:50px;
border:1px solid #eee;
margin-top:40px;
}


/* ====================================
   MOBILE RESPONSIVE
==================================== */

@media(max-width:900px){

.contact-section{
padding:100px 20px;
}

.contact-section h1{
font-size:36px;
}

.contact-card{
padding:35px;
}

}

/* ===============================
   SCROLL REVEAL ANIMATION
================================ */

.reveal{
opacity:0;
transform:translateY(40px);
transition:all 0.8s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

/* ===============================
   FOOTER WHATSAPP
================================ */

.footer-whatsapp{
margin-top:15px;
display:flex;
align-items:center;
gap:10px;
}

.footer-whatsapp-icon{
width:20px;
}

.footer-whatsapp a{
color:#25D366;
text-decoration:none;
font-weight:500;
}

.footer-whatsapp a:hover{
text-decoration:underline;
}

/* ===============================
   ABOUT PAGE
================================ */

.about-section{
padding:140px 80px;
max-width:800px;
margin:auto;
}

.about-section h1{
font-family:"Playfair Display", serif;
font-size:48px;
margin-bottom:20px;
}

.about-intro{
font-size:20px;
margin-bottom:20px;
}

.about-section p{
margin-bottom:20px;
color:#555;
line-height:1.7;
}

.about-services{
padding:100px 80px;
background:#f8f8f8;
text-align:center;
}

.about-services h2{
font-family:"Playfair Display", serif;
font-size:36px;
margin-bottom:30px;
}

.about-services ul{
list-style:none;
}

.about-services li{
margin-bottom:10px;
font-size:18px;
}

/* ===============================
   ABOUT PAGE
================================ */

.about-section{
padding:140px 80px;
max-width:800px;
margin:auto;
}

.about-section h1{
font-family:"Playfair Display", serif;
font-size:48px;
margin-bottom:20px;
}

.about-intro{
font-size:20px;
margin-bottom:20px;
}

.about-section p{
margin-bottom:20px;
color:#555;
line-height:1.7;
}


/* ===============================
   WHY COPY MATTERS
================================ */

.why-copy{
padding:120px 80px;
background:#f8f8f8;
max-width:900px;
margin:auto;
}

.why-copy h2{
font-family:"Playfair Display", serif;
font-size:36px;
margin-bottom:20px;
}


/* ===============================
   PROCESS SECTION
================================ */

.process{
padding:120px 80px;
}

.process h2{
font-family:"Playfair Display", serif;
font-size:36px;
margin-bottom:40px;
text-align:center;
}

.process-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
max-width:1000px;
margin:auto;
}

.process-step{
background:#f7f7f7;
padding:30px;
}

.process-step h3{
margin-bottom:10px;
}


/* ===============================
   ABOUT CTA
================================ */

.about-cta{
padding:140px 80px;
text-align:center;
background:#111;
color:white;
}

.about-cta h2{
font-family:"Playfair Display", serif;
font-size:42px;
margin-bottom:20px;
}

.about-cta p{
margin-bottom:30px;
color:#ddd;
}


/* ===============================
   MOBILE
================================ */

@media(max-width:900px){

.about-section,
.why-copy,
.process,
.about-cta{
padding:100px 20px;
}

.process-grid{
grid-template-columns:1fr;
}

}

/* ===============================
   WORK PROJECT THUMBNAILS
================================ */

.work-thumbnail{
width:100%;
border-radius:6px;
margin-bottom:15px;
}

.work-card{
background:#f7f7f7;
padding:25px;
border:1px solid #eee;
transition:0.3s;
}

.work-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* ===================================
   CASE STUDY PAGE
=================================== */

.case-study{
max-width:900px;
margin:auto;
padding:140px 80px;
}

/* case study title */

.case-study h1{
font-family:"Playfair Display", serif;
font-size:48px;
margin-bottom:20px;
}

/* intro paragraph */

.case-intro{
font-size:20px;
color:#555;
margin-bottom:60px;
line-height:1.6;
}


/* ===================================
   CASE STUDY SECTIONS
=================================== */

.case-section{
margin-bottom:80px;
}

.case-section h2{
font-family:"Playfair Display", serif;
font-size:32px;
margin-bottom:15px;
}

.case-section p{
color:#555;
line-height:1.7;
}


/* ===================================
   PROBLEM / SOLUTION BOX
=================================== */

.case-highlight{
background:#f8f8f8;
padding:35px;
border-left:4px solid #c9a96e;
margin:40px 0;
}


/* ===================================
   COPY SAMPLE
=================================== */

.copy-sample{
background:#111;
color:white;
padding:40px;
margin:40px 0;
font-family:"Playfair Display", serif;
font-size:28px;
line-height:1.4;
}


/* ===================================
   RESULTS SECTION
=================================== */

.case-results{
background:#f7f7f7;
padding:50px;
margin-top:60px;
}

.case-results h2{
font-family:"Playfair Display", serif;
margin-bottom:15px;
}

.case-results p{
color:#555;
}


/* ===================================
   PROJECT LINK
=================================== */

.case-link{
margin-top:40px;
}

.case-link a{
display:inline-block;
padding:14px 32px;
background:#111;
color:white;
text-decoration:none;
transition:0.3s;
}

.case-link a:hover{
background:#c9a96e;
}


/* ===================================
   MOBILE
=================================== */

@media(max-width:900px){

.case-study{
padding:100px 20px;
}

.case-study h1{
font-size:36px;
}

.copy-sample{
font-size:22px;
}

}

/* ===================================
   WORK THUMBNAILS
=================================== */

.work-thumbnail{
width:100%;
height:auto;
border-radius:6px;
margin-bottom:15px;
transition:0.3s;
}

.work-card:hover .work-thumbnail{
transform:scale(1.02);
}

/* work card */

.work-card{
background:#f7f7f7;
padding:25px;
border:1px solid #eee;
transition:0.3s;
}

.work-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* project link */

.work-link{
display:inline-block;
margin-top:10px;
text-decoration:none;
color:#111;
font-weight:500;
}

.work-link:hover{
color:#c9a96e;
}

/* ===============================
WORK THUMBNAIL HOVER OVERLAY
=============================== */

.work-thumb-wrapper{
position:relative;
display:block;
overflow:hidden;
}

.work-thumbnail{
width:100%;
display:block;
border-radius:6px;
transition:0.4s;
}

.work-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
display:flex;
align-items:center;
justify-content:center;
opacity:0;
transition:0.4s;
}

.work-overlay span{
color:white;
font-size:18px;
letter-spacing:1px;
}

.work-thumb-wrapper:hover .work-overlay{
opacity:1;
}

.work-thumb-wrapper:hover .work-thumbnail{
transform:scale(1.05);
}

/* ===============================
BRAND (LOGO + TEXT)
=============================== */

.brand{
display:flex;
align-items:center;
gap:10px;
}

.logo{
height:60px;
width:auto;
}

.brand-name{
font-family:"Playfair Display", serif;
font-size:32px;
font-weight:700;
white-space:nowrap;
}

/* ===============================
FLOATING WHATSAPP BUTTON
=============================== */

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
width:55px;
height:55px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
z-index:1000;
}

.whatsapp-float img{
width:28px;
}

/* ===============================
NAVBAR OVERLAY
=============================== */

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
padding:20px 80px;
display:flex;
justify-content:space-between;
align-items:center;
transition:0.3s;
z-index:1000;
background:white;
}

.navbar.scrolled{
background:white;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* ===============================
MOBILE MENU
=============================== */

.menu-toggle{
display:none;
flex-direction:column;
cursor:pointer;
}

.menu-toggle span{
height:3px;
width:25px;
background:#111;
margin:4px 0;
display:block;
}


/* mobile layout */

@media(max-width:900px){

.nav-links{
position:absolute;
top:80px;
left:0;
width:100%;
background:white;
flex-direction:column;
align-items:center;
display:none;
padding:30px 0;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.nav-links a{
margin:15px 0;
font-size:18px;
}

.menu-toggle{
display:flex;
}

.nav-links.active{
display:flex;
}

}

/* ===============================
MOBILE BRAND RESPONSIVENESS
=============================== */

@media(max-width:900px){

.logo{
height:40px;
}

.brand-name{
font-size:18px;
}

.navbar{
padding:15px 20px;
}

}

@media(max-width:500px){

.logo{
height:34px;
}

.brand-name{
font-size:16px;
}

}

/* ===============================
HERO SECTION
================================ */

.hero{
min-height:90vh;
display:flex;
align-items:center;
padding:180px 80px;
background:#111;
color:white;
}

.hero-inner{
max-width:1100px;
margin:auto;
}

.hero h1{
font-family:"Playfair Display", serif;
font-size:64px;
line-height:1.1;
margin-bottom:20px;
}

.hero p{
font-size:20px;
max-width:500px;
margin-bottom:30px;
color:#ddd;
}

@media(max-width:900px){

.hero{
padding:140px 30px;
}

.hero h1{
font-size:42px;
}

.hero p{
font-size:18px;
}

}

@media(max-width:500px){

.hero{
padding:120px 20px;
text-align:left;
}

.hero h1{
font-size:34px;
line-height:1.2;
}

.hero p{
font-size:16px;
}

.btn{
padding:12px 24px;
font-size:13px;
}

}

.hero-inner{
max-width:600px;
}

/* ===============================
GRAIN TEXTURE BACKGROUND
=============================== */

body::before{
content:"";
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background-image:url("https://www.transparenttextures.com/patterns/asfalt-light.png");
opacity:0.15;
pointer-events:none;
z-index:-1;
}

body{
font-family:"Inter", sans-serif;
color:#222;
line-height:1.6;
background:#fafafa;
}

html{
scroll-behavior:smooth;
}

/* ===============================
PAGE LOADER
=============================== */

.page-loader{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:#111;
display:flex;
align-items:center;
justify-content:center;
z-index:9999;
transition:opacity 0.6s ease, visibility 0.6s ease;
}

.loader-text{
font-family:"Playfair Display", serif;
font-size:32px;
color:goldenrod;
letter-spacing:2px;
animation:fadePulse 1.8s infinite;
}

@keyframes fadePulse{
0%{opacity:0.3;}
50%{opacity:1;}
100%{opacity:0.3;}
}

/* hide loader */

.page-loader.hidden{
opacity:0;
visibility:hidden;
}

/* ===============================
ANIMATED HERO TEXT
=============================== */

.changing-text{
color:#c9a96e;
transition:opacity 0.4s ease;
}