/* ==========================================================
   styles.css — LAYOUT, HERO, CONTACT BAR, FOOTER
========================================================== */

/* -------------------------
   BRAND COLOURS
-------------------------- */
:root {
	--brand-navy: #08386b;
	--brand-blue: #0b55b5;
	--brand-orange: #e1752d;
	--brand-yellow: #ffd23f;
	--brand-light: #f4f5f3;
	--brand-dark: #020f21;
}


/* -------------------------
   GLOBAL HEADING STANDARD
-------------------------- */
h1,
h2,
h3,
h4 {
	font-family: "Exo 2", sans-serif;
	color: var(--brand-navy);
}


/* -------------------------
   GLOBAL BUTTON STANDARD
-------------------------- */
.btn {
	font-family: "Exo 2", sans-serif;
	font-weight: 600;
}


/* -------------------------
   CONTACT BAR
-------------------------- */
.contact-bar {
	padding: 0.5rem 0;
	background: var(--brand-light);
	border-bottom: 1px solid #ddd;
}

.contact-desktop {
	display: flex;
	justify-content: center;
	gap: 60px;
}

.contact-desktop a {
	font-size: 0.95rem;
	color: #333;
	text-decoration: none;
	white-space: nowrap;
}

.contact-desktop a:hover {
	color: #000;
}

.contact-mobile {
	display: none;
	width: 100%;
}

.contact-mobile a {
	display: flex;
	flex: 1 0 33.33%;
	justify-content: center;
	align-items: center;
	padding: 10px 0;
}

.contact-bar i {
	font-size: 1.4rem;
	line-height: 1;
	color: #333;
	transition: opacity 0.2s ease;
}

.contact-bar a:hover i {
	opacity: 0.7;
}

.contact-desktop i {
	font-size: 1.1rem;
	margin-right: 6px;
}

.contact-mobile i {
	font-size: 1.8rem;
}

@media (max-width: 768px) {
	.contact-desktop {
		display: none !important;
	}

	.contact-mobile {
		display: flex !important;
	}
}


/* -------------------------
   HEADER
-------------------------- */
.site-header {
	padding: 2rem 0;
	background: #fff;
}

.brand-logo img {
	display: block;
	width: auto;
	max-height: 72px; /* desktop */
}

@media (max-width: 768px) {
	.brand-logo img {
		max-height: 42px; /* mobile */
	}
}

.header-icons {
	display: flex;
	align-items: center;
	gap: 14px;
}

.header-icons img {
	width: 26px;
	height: 26px;
	opacity: 0.85;
	transition: opacity 0.2s ease;
}

.header-icons img:hover {
	opacity: 1;
}

.header-icons i {
	font-size: 2.5rem;
	line-height: 1;
	color: var(--brand-blue);
}

.header-icons a:hover i {
	color: var(--brand-navy);
}


/* -------------------------
   HERO
-------------------------- */
#hero {
	padding: 5rem 0;
	background: #fff;
}

#hero h1 {
	margin-bottom: 1.25rem;
	font-size: 3.1rem;
	line-height: 1.15;
}

#hero .lead {
	max-width: 520px;
	font-size: 1.25rem;
	line-height: 1.6;
	color: var(--brand-navy);
}


/* -------------------------
   AVAILABLE CONTAINERS
-------------------------- */
#available-containers {
	padding: 3rem 0 3.5rem;
	background: var(--brand-navy);
	color: #fff;
}

#available-containers .container,
#available-containers .row {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

#available-containers h2 {
	margin: 0 0 1.5rem 0 !important;
	font-size: 2.5rem;
	font-weight: 700;
	color: #fff;
}

#available-containers .section-divider {
	width: 64px;
	height: 2px;
	margin: 0 auto 1.25rem !important;
	background: rgba(255, 255, 255, 0.35);
}

#available-containers h3 {
	margin: 0 0 0.25rem 0 !important;
	font-size: 1.7rem;
	font-weight: 600;
	color: #fff;
}

#available-containers .intro {
	margin: 0 0 1.25rem 0 !important;
	font-size: 1.05rem;
	opacity: 0.85;
}

#available-containers .feature {
	margin: 0 0 0.25rem 0 !important;
}

#available-containers .meta {
	margin: 0 !important;
	font-size: 0.9rem;
	opacity: 0.7;
}

#available-containers .price {
	margin: 0 !important;
	font-size: 2.2rem;
	font-weight: 700;
}

#available-containers .price span {
	font-size: 1rem;
	font-weight: 400;
	opacity: 0.75;
}

@media (max-width: 767px) {
	#available-containers {
		padding: 2.75rem 0 3rem;
		text-align: center;
	}
}


/* -------------------------
   SELF STORAGE PRICING
-------------------------- */
.section-light {
	padding: 3rem 0;
	background: var(--brand-light);
}

.section-light h2 {
	margin-bottom: 1.5rem;
	font-family: "Exo 2", sans-serif;
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--brand-navy);
}

.section-light h3 {
	font-family: "Exo 2", sans-serif;
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--brand-navy);
}

.section-light p strong {
	font-family: "Exo 2", sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--brand-navy);
}


/* -------------------------
   LOCATION MAP
-------------------------- */
#location-map {
	width: 100%;
}

#location-map iframe {
	display: block;
	width: 100%;
	height: 420px;
	border: 0;
}

@media (min-width: 992px) {
	#location-map iframe {
		height: 500px;
	}
}


/* -------------------------
   WHY CHOOSE
-------------------------- */
#why-choose {
	padding: 4rem 0;
	background: #fff;
}

#why-choose h2 {
	font-size: 2.8rem;
	font-weight: 700;
}

#why-choose h4 {
	font-size: 1.25rem;
	font-weight: 600;
}

#why-choose p {
	max-width: 520px;
	font-size: 1rem;
	line-height: 1.65;
	color: #333;
}


/* -------------------------
   SECTION DARK (CTA)
-------------------------- */
.section-dark {
	padding: 3rem 0;
	background: var(--brand-navy);
	color: #fff;
}

.section-dark h3 {
	margin-top: 10px;
	font-size: 2.4rem;
	font-weight: 700;
	color: #fff;
}

/* ==========================================================
   TERMS & CONDITIONS
========================================================== */

.section-light h1 {
	font-size: 3.2rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--brand-navy);
}

.terms-panel {
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 0 0 1px rgba(0,0,0,0.04);
}

.terms-contents ul {
	list-style: none;
	margin: 0 0 1.25rem;
	padding-left: 0;
}

.terms-contents li {
	margin-bottom: 0.25rem;
}

.terms-contents a {
	font-family: "Exo 2", sans-serif;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--brand-navy);
	text-decoration: none;
}

.terms-contents a:hover {
	text-decoration: underline;
}

.terms-panel h2 {
	margin: 2.25rem 0 0.75rem;
	font-family: "Exo 2", sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--brand-navy);
}

.terms-panel ol {
	padding-left: 1.25rem;
	margin-bottom: 0;
}

.terms-panel li {
	margin-bottom: 1rem;
	font-size: 0.95rem;
	line-height: 1.7;
	color: #333;
}

@media (max-width: 768px) {
	.section-light h1 {
		font-size: 2.4rem;
	}

	.terms-panel {
		padding: 1.75rem !important;
	}
}


/* -------------------------
   TERMS CTA
-------------------------- */
#terms-cta {
	padding: 3rem 0;
	background: var(--brand-orange);
}

#terms-cta h3 {
	margin-top: 10px;
	font-size: 2.4rem;
	font-weight: 700;
	color: #fff;
}


/* -------------------------
   FOOTER
-------------------------- */
#site-footer {
	padding: 3.5rem 0 2rem;
	background: var(--brand-dark);
	color: #fff;
}

#site-footer h4 {
	padding-bottom: 0.75rem;
	font-size: 1rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

#site-footer p {
	font-size: 0.95rem;
	line-height: 1.6;
}

#site-footer a {
	color: #d6d6d6;
	text-decoration: none;
}

#site-footer a:hover {
	color: #fff;
}

.footer-meta {
	margin-bottom: 0.5rem;
	font-size: 0.85rem !important;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.75);
}

.footer-meta:first-of-type {
	margin-bottom: 0.75rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
}


/* ==========================================================
   MOBILE SPACING & LAYOUT IMPROVEMENTS
========================================================== */
@media (max-width: 768px) {

	/* -------------------------
	   HEADER
	-------------------------- */
	.site-header {
		padding: 1.25rem 0;
	}

	.brand-logo img {
		max-height: 84px;
		height: auto;
	}

	.header-icons {
		gap: 10px;
	}

	.header-icons i {
		font-size: 2rem;
	}

	/* -------------------------
	   HERO
	-------------------------- */
	#hero {
		padding: 3rem 0 2.5rem;
	}

	#hero h1 {
		margin-bottom: 1rem;
	}

	#hero .lead {
		margin-bottom: 1.5rem;
	}

	#hero .btn {
		margin-bottom: 0.75rem;
	}

	/* -------------------------
	   AVAILABLE CONTAINERS
	-------------------------- */
	#available-containers {
		padding: 3rem 0;
	}

	#available-containers h2 {
		margin-bottom: 0.5rem;
	}

	#available-containers .section-divider {
		margin-bottom: 1.25rem;
	}

	#available-containers h3 {
		margin-top: 1.25rem;
	}

	/* -------------------------
	   WHY CHOOSE
	-------------------------- */
	#why-choose {
		padding-top: 3rem;
		padding-bottom: 3.5rem;
	}

	#why-choose h2 {
		margin-bottom: 2rem;
		line-height: 1.2;
	}

	#why-choose h4 {
		margin-top: 1.75rem;
		margin-bottom: 0.5rem;
	}

	#why-choose p {
		margin-bottom: 1.25rem;
	}

	/* -------------------------
	   CTA
	-------------------------- */
	.section-dark h3 {
		margin-bottom: 1.25rem;
	}

	.section-dark .btn {
		margin-top: 0.75rem;
	}

	/* -------------------------
	   TERMS CTA
	-------------------------- */
	#terms-cta h3 {
		margin-bottom: 1.25rem;
	}

	#terms-cta .btn {
		margin-top: 0.75rem;
	}

	/* -------------------------
	   FOOTER
	-------------------------- */
	#site-footer h4 {
		margin-top: 2rem;
	}

	#site-footer .col-md-4:first-child h4 {
		margin-top: 0;
	}

	#site-footer ul {
		margin-bottom: 1.5rem;
	}

	.footer-meta {
		margin-top: 1rem;
	}
}
