/* =====================================================
   GLOBAL STYLES
===================================================== */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 700;
}

a {
    transition: all 2.3s ease;
}

/* =====================================================
   HOME PAGE
===================================================== */
.home-page {
    background: #000;
    color: #fff;
}

/* HERO */
.home-hero {
    padding: 110px 0;
    background: #000;
}

.hero-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: yellow;
}

.hero-text p {
    margin: 25px 0;
    color: #ccc;
    font-size: 1.05rem;
}

.hero-buttons a {
    display: inline-block;
    padding: 15px 32px;
    font-weight: 600;
    border-radius: 6px;
    margin-right: 15px;
}

.btn-primary {
    background: yellow;
    color: #000;
}

.btn-primary:hover {
    background: #fff200;
    transform: translateY(-3px);
}

.btn-secondary {
    background: #111;
    color: yellow;
    border: 1px solid yellow;
}

.btn-secondary:hover {
    background: yellow;
    color: #000;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 12px;
}

/* =====================================================
   ABOUT SECTION (HOME)
===================================================== */
.about-section {
    padding: 90px 0;
    background: #000;
}

.about-section h2 {
    text-align: center;
    color: yellow;
    margin-bottom: 50px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.about-box {
    background: #111;
    padding: 35px;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.about-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(255,255,0,0.08);
}

.about-box h3 {
    color: yellow;
    margin-bottom: 15px;
}

/* =====================================================
   SERVICES (HOME)
===================================================== */
.home-services {
    padding: 90px 0;
    background: #111;
}

.home-services h2 {
    text-align: center;
    color: yellow;
    margin-bottom: 50px;
}

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

.service-card {
    background: #000;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.35s ease;
}

.service-card img {
    width: 80px;
    margin-bottom: 15px;
}

.service-card h3 {
    color: yellow;
    margin-bottom: 10px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(255,255,0,0.12);
}

/* =====================================================
   STATS
===================================================== */
.stats-section {
    padding: 90px 0;
    background: #111;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    text-align: center;
}

.stats-grid h3 {
    font-size: 2.6rem;
    color: yellow;
}

/* =====================================================
   CTA
===================================================== */
.cta-section {
    padding: 90px 20px;
    background: #000;
    text-align: center;
}

.cta-section h2 {
    color: yellow;
    margin-bottom: 30px;
}

.cta-section a {
    background: yellow;
    color: #000;
    padding: 18px 40px;
    font-weight: 700;
    border-radius: 6px;
}

.cta-section a:hover {
    transform: translateY(-4px);
    background: #fff200;
}

/* =====================================================
   ABOUT PAGE
===================================================== */
.about-hero {
    background: linear-gradient(135deg, #204859, #203a43, #8d969a);
    color: #8e8383;
    padding: 110px 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.about-hero p {
    max-width: 720px;
    margin: auto;
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-grid img {
    width: 100%;
    border-radius: 14px;
}

.about-text h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
}

.about-text p {
    color: #c8d113;
    line-height: 1.7;
}

/* VALUES */
.about-values {
    background: #e0e00b;
    padding: 80px 20px;
}

.values-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.value-box {
    background: #141414;
    padding: 30px;
    border-radius: 12px;
}

.value-box h3 {
    color: #b1ef09;
}

/* =====================================================
   SERVICES PAGE
===================================================== */
.services-page {
    background: #141313;
}

.services-hero {
    background: #3e768c;
    padding: 110px 20px 90px;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    color: #e2f016;
}

.services-hero .hero-text {
    max-width: 720px;
    margin: auto;
    color: #cbec10;
}

.services-section {
    padding: 90px 20px;
}

.service-card p {
    color: #d2e90a;
}

/* =====================================================
   PORTFOLIO PAGE
===================================================== */
.portfolio-page {
    background: #000;
    padding: 90px 20px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: #111;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.portfolio-item img {
    width: 100%;
    display: block;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(255,255,0,0.12);
}

.portfolio-content {
    padding: 25px;
}

.portfolio-content h3 {
    color: yellow;
}

/* =====================================================
   CONTACT PAGE
===================================================== */
.contact-page {
    background: #000;
    padding: 90px 20px;
}

.contact-wrapper {
    max-width: 900px;
    margin: auto;
}

.contact-form {
    background: #111;
    padding: 40px;
    border-radius: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    background: #000;
    border: 1px solid yellow;
    color: #fff;
    border-radius: 6px;
}

.contact-form button {
    background: yellow;
    color: #000;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
}

.contact-form button:hover {
    transform: translateY(-3px);
}

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
    background: #4f4d4d;
    color: #ddd;
    padding: 30px 15px;
    text-align: center;
}

.site-footer .footer-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f4f6fa;
    margin-bottom: 6px;
}

.site-footer p {
    font-size: 0.9rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 12px;
    line-height: 1.5;
}

.social-icons {
    margin: 10px 0;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin: 0 6px;
    background: #666;
    color: #fff;
    border-radius: 50%;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #f4f6fa;
    color: #000;
    transform: translateY(-3px);
}

.footer-copy {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 8px;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 768px) {
    .hero-text h1,
    .about-hero h1,
    .services-hero h1 {
        font-size: 2.3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding: 25px 15px;
    }
}
