/* ===================================
   ROOT VARIABLES & RESET
   =================================== */
:root {
    --primary-dark: #1d1d1d;
    --primary-gold: #967c49;
    --secondary-beige: #a49783;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --accent-shadow: rgba(150, 124, 73, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
    opacity: 0;
    animation: pageLoad 0.5s ease-out 0.1s forwards;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 2px;
}

/* ===================================
   NAVIGATION MENU
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(29, 29, 29, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.nav-logo a:hover {
    color: var(--primary-gold);
}

.nav-logo .gold {
    color: var(--primary-gold);
    font-weight: 600;
    font-style: italic;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-gray);
    position: relative;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 30px;
    height: 2px;
    background: var(--primary-gold);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 70vh;
    background: linear-gradient(135deg, #000000 0%, var(--primary-dark) 50%, #2a2a2a 100%);
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 100px 60px 0;
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(150, 124, 73, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* ===================================
   FLOATING HAIR TOOLS BACKGROUND
   =================================== */
.floating-tools {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.tool {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.08;
    filter: grayscale(100%) brightness(1.2);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    transition: opacity 0.3s ease;
}

/* Individual Tool Positions and Animations */
.tool-1 {
    top: 15%;
    left: 10%;
    animation: floatCircle1 25s infinite;
}

.tool-2 {
    top: 25%;
    right: 15%;
    animation: floatCircle2 30s infinite reverse;
    font-size: 3rem;
}

.tool-3 {
    top: 60%;
    left: 8%;
    animation: floatCircle3 28s infinite;
    font-size: 2rem;
}

.tool-4 {
    top: 70%;
    right: 20%;
    animation: floatCircle4 22s infinite reverse;
}

.tool-5 {
    top: 45%;
    left: 5%;
    animation: floatCircle5 26s infinite;
    font-size: 2.2rem;
}

.tool-6 {
    top: 10%;
    right: 8%;
    animation: floatCircle6 24s infinite reverse;
    font-size: 2.8rem;
}

.tool-7 {
    top: 80%;
    left: 15%;
    animation: floatCircle7 20s infinite;
    font-size: 1.8rem;
}

.tool-8 {
    top: 50%;
    right: 5%;
    animation: floatCircle8 27s infinite reverse;
    font-size: 2.3rem;
}

/* Hover effect - tools become more visible */
.hero:hover .tool {
    opacity: 0.15;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-end;
    position: relative;
    z-index: 2;
    padding-bottom: 0;
}

/* ===================================
   HERO CONTENT - LEFT SIDE
   =================================== */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    animation: fadeInLeft 1s ease-out 0.3s forwards;
    padding-bottom: 30px;
}

.brand-title h1 {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 300;
    letter-spacing: 8px;
    line-height: 1;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.brand-title .gold {
    color: var(--primary-gold);
    font-weight: 600;
    font-style: italic;
    display: inline-block;
    text-shadow: 0 0 40px var(--accent-shadow);
}

.slogan {
    border-left: 3px solid var(--primary-gold);
    padding-left: 30px;
    margin: 20px 0;
}

.slogan h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 8px;
    letter-spacing: 3px;
}

.tagline {
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    color: var(--secondary-beige);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.hero-description {
    max-width: 500px;
    margin: 10px 0;
}

.hero-description p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 12px;
    font-weight: 300;
}

.hero-description .experience {
    color: var(--primary-gold);
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.4s ease;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #b8935a 100%);
    color: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(150, 124, 73, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(150, 124, 73, 0.6);
    background: linear-gradient(135deg, #b8935a 0%, var(--primary-gold) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(150, 124, 73, 0.4);
}

/* ===================================
   HERO IMAGE - RIGHT SIDE
   =================================== */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeInRight 1s ease-out 0.3s forwards;
}

.image-wrapper {
    position: relative;
    z-index: 2;
    max-width: 500px;
    width: 100%;
    display: flex;
    align-items: flex-end;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    object-position: bottom;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.8));
}

/* Decorative Accent Circles */
.accent-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.15;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-gold) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    border: 2px solid var(--primary-gold);
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    animation: rotate 20s linear infinite;
}

/* ===================================
   SCROLL INDICATOR
   =================================== */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--secondary-beige);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    animation: fadeIn 2s ease-out 1s both;
    z-index: 10;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--primary-gold) 0%, transparent 100%);
    animation: scrollLine 2s ease-in-out infinite;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes pageLoad {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.25;
    }
}

@keyframes rotate {
    from {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

@keyframes scrollLine {
    0%, 100% {
        transform: scaleY(1);
        opacity: 1;
    }
    50% {
        transform: scaleY(1.5);
        opacity: 0.5;
    }
}

/* Circular Float Animations for Hair Tools */
@keyframes floatCircle1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -40px) rotate(90deg);
    }
    50% {
        transform: translate(60px, 0) rotate(180deg);
    }
    75% {
        transform: translate(30px, 40px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes floatCircle2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-40px, 30px) rotate(-90deg);
    }
    50% {
        transform: translate(-80px, 0) rotate(-180deg);
    }
    75% {
        transform: translate(-40px, -30px) rotate(-270deg);
    }
    100% {
        transform: translate(0, 0) rotate(-360deg);
    }
}

@keyframes floatCircle3 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(25px, -35px) rotate(60deg) scale(1.1);
    }
    50% {
        transform: translate(50px, 0) rotate(120deg) scale(1);
    }
    75% {
        transform: translate(25px, 35px) rotate(180deg) scale(0.9);
    }
    100% {
        transform: translate(0, 0) rotate(240deg) scale(1);
    }
}

@keyframes floatCircle4 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-35px, -25px) rotate(-120deg);
    }
    66% {
        transform: translate(-70px, 25px) rotate(-240deg);
    }
    100% {
        transform: translate(0, 0) rotate(-360deg);
    }
}

@keyframes floatCircle5 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    20% {
        transform: translate(40px, 20px) rotate(72deg);
    }
    40% {
        transform: translate(30px, -40px) rotate(144deg);
    }
    60% {
        transform: translate(-20px, -35px) rotate(216deg);
    }
    80% {
        transform: translate(-30px, 15px) rotate(288deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes floatCircle6 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    30% {
        transform: translate(-45px, 35px) rotate(-108deg) scale(1.15);
    }
    60% {
        transform: translate(-25px, -40px) rotate(-216deg) scale(0.95);
    }
    100% {
        transform: translate(0, 0) rotate(-360deg) scale(1);
    }
}

@keyframes floatCircle7 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(35px, 30px) rotate(90deg);
    }
    50% {
        transform: translate(0, 60px) rotate(180deg);
    }
    75% {
        transform: translate(-35px, 30px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes floatCircle8 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    20% {
        transform: translate(-30px, -30px) rotate(-72deg) scale(1.1);
    }
    40% {
        transform: translate(-50px, 10px) rotate(-144deg) scale(1);
    }
    60% {
        transform: translate(-30px, 40px) rotate(-216deg) scale(0.9);
    }
    80% {
        transform: translate(10px, 30px) rotate(-288deg) scale(1.05);
    }
    100% {
        transform: translate(0, 0) rotate(-360deg) scale(1);
    }
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    padding: 120px 60px;
    background: var(--primary-dark);
    position: relative;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.title-underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
    font-weight: 300;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.8;
    border-left: 3px solid var(--primary-gold);
    padding-left: 25px;
}

.about-expertise {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.expertise-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 25px 15px;
    background: rgba(150, 124, 73, 0.05);
    border: 1px solid rgba(150, 124, 73, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    background: rgba(150, 124, 73, 0.1);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.expertise-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    filter: grayscale(100%) brightness(1.2);
    opacity: 0.8;
}

.expertise-item h4 {
    font-size: 1rem;
    color: var(--primary-gold);
    letter-spacing: 1px;
    font-weight: 400;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    position: relative;
    max-width: 500px;
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, rgba(150, 124, 73, 0.1) 0%, rgba(164, 151, 131, 0.05) 100%);
    border: 2px solid rgba(150, 124, 73, 0.3);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.image-frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(150, 124, 73, 0.2);
    border-color: var(--primary-gold);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: 120px 60px;
    background: linear-gradient(135deg, #0a0a0a 0%, var(--primary-dark) 100%);
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-beige);
    font-weight: 300;
    margin-top: 15px;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: rgba(150, 124, 73, 0.03);
    border: 1px solid rgba(150, 124, 73, 0.2);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(150, 124, 73, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.service-card:hover {
    background: rgba(150, 124, 73, 0.08);
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(150, 124, 73, 0.2);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: grayscale(100%) brightness(1.2);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    opacity: 1;
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    font-weight: 300;
}

/* ===================================
   PORTFOLIO SECTION
   =================================== */
.portfolio {
    padding: 120px 60px;
    background: var(--primary-dark);
    position: relative;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
    background: #0a0a0a;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay span {
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 2px;
    display: block;
    text-align: center;
}

.portfolio-cta {
    text-align: center;
    margin-top: 60px;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    padding: 120px 60px;
    background: linear-gradient(135deg, #0a0a0a 0%, var(--primary-dark) 100%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 25px;
    background: rgba(150, 124, 73, 0.03);
    border: 1px solid rgba(150, 124, 73, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(150, 124, 73, 0.08);
    border-color: var(--primary-gold);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2.5rem;
    filter: grayscale(100%) brightness(1.2);
    opacity: 0.8;
}

.contact-details h3 {
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.contact-details p,
.contact-details a {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-gold);
}

.contact-message {
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-box {
    background: rgba(150, 124, 73, 0.05);
    border: 2px solid rgba(150, 124, 73, 0.3);
    border-radius: 8px;
    padding: 50px 40px;
    text-align: center;
}

.message-box h3 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.message-box p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 35px;
}

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

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 30px;
    background: transparent;
    border: 2px solid var(--primary-gold);
    border-radius: 4px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.social-btn span {
    font-size: 1.3rem;
}

.social-btn:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: #0a0a0a;
    padding: 60px 60px 30px;
    border-top: 1px solid rgba(150, 124, 73, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 10px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--text-light);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(150, 124, 73, 0.1);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-credit {
    margin-top: 15px;
    font-size: 0.85rem !important;
    opacity: 0.8;
}

.footer-credit a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-credit a:hover {
    color: var(--text-light);
    text-decoration: underline;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .hero-container {
        gap: 50px;
        padding: 0 20px;
    }

    .brand-title h1 {
        font-size: 5rem;
    }

    .slogan h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 30px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(29, 29, 29, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 30px 40px;
        min-height: auto;
    }

    /* Reduce tool size and opacity on mobile */
    .tool {
        font-size: 1.5rem;
        opacity: 0.05;
    }

    .about {
        padding: 80px 30px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
    }

    .expertise-item {
        flex: 1 1 calc(50% - 15px);
    }

    .services {
        padding: 80px 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .portfolio {
        padding: 80px 30px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }


    .contact {
        padding: 80px 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer {
        padding: 50px 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .footer-contact {
        align-items: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        order: 2;
        align-items: center;
    }

    .hero-image {
        order: 1;
    }

    .brand-title h1 {
        font-size: 4rem;
    }

    .slogan {
        border-left: none;
        border-top: 3px solid var(--primary-gold);
        padding-left: 0;
        padding-top: 20px;
    }

    .slogan h2 {
        font-size: 2rem;
    }

    .hero-description {
        text-align: center;
        margin: 10px auto;
    }

    .hero-cta {
        justify-content: center;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        flex: 1;
        min-width: 160px;
        text-align: center;
    }

    .circle-2 {
        right: 50%;
        transform: translate(50%, -50%);
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        width: 85%;
    }

    .hero {
        padding: 80px 20px 30px;
    }

    .about {
        padding: 60px 20px;
    }

    .expertise-item {
        flex: 1 1 100%;
    }

    .services {
        padding: 60px 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .portfolio {
        padding: 60px 20px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact {
        padding: 60px 20px;
    }

    .message-box {
        padding: 35px 25px;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .brand-title h1 {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .slogan h2 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.8rem;
    }

    .hero-description p {
        font-size: 0.95rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .image-wrapper {
        max-width: 350px;
    }

    .circle-1 {
        width: 300px;
        height: 300px;
    }

    .circle-2 {
        width: 200px;
        height: 200px;
    }
}

